AIsOfCatan.API.Tile.Tile C# (CSharp) Method

Tile() public method

public Tile ( Terrain terrain, int value ) : System
terrain Terrain
value int
return System
        public Tile(Terrain terrain, int value)
        {
            this.Terrain = terrain;
            this.Value = value;
        }