AStarTest.RenderTileData.RenderTileData C# (CSharp) Method

RenderTileData() public method

public RenderTileData ( System.Windows.Media.Brush bg ) : System
bg System.Windows.Media.Brush
return 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