AStarPoint.cs 657 B

123456789101112131415161718192021222324252627
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. // Runtime Version:4.0.30319.1008
  5. //
  6. // Changes to this file may cause incorrect behavior and will be lost if
  7. // the code is regenerated.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. using System;
  11. public class AStarPoint
  12. {
  13. public int x;
  14. public int y;
  15. public AStarPoint (int x=0, int y=0)
  16. {
  17. this.x = x;
  18. this.y = y;
  19. }
  20. public override string ToString ()
  21. {
  22. return string.Format ("[AStarPoint] "+x.ToString()+", "+y.ToString());
  23. }
  24. }