123456789101112131415161718192021222324252627 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated by a tool.
- // Runtime Version:4.0.30319.1008
- //
- // Changes to this file may cause incorrect behavior and will be lost if
- // the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- using System;
- public class AStarPoint
- {
- public int x;
- public int y;
- public AStarPoint (int x=0, int y=0)
- {
- this.x = x;
- this.y = y;
- }
- public override string ToString ()
- {
- return string.Format ("[AStarPoint] "+x.ToString()+", "+y.ToString());
- }
- }
|