AStarTest.RenderTileData.RenderTileData C# (CSharp) 메소드

RenderTileData() 공개 메소드

public RenderTileData ( System.Windows.Media.Brush bg ) : System
bg System.Windows.Media.Brush
리턴 System
        public RenderTileData(Brush bg)
        {
            this.Brush = bg;
            this.G = 0;
            this.H = 0;
            this.From = Direction.None;
            this.Weight = 0;
            this.Stairs = Stairs.None;
        }
RenderTileData