Engine.Objects.Layer.SetTile C# (CSharp) Method

SetTile() public method

Sets a tile, if applicable.
public SetTile ( int x, int y, short index ) : bool
x int X-coord to use.
y int Y-coord to use.
index short Index to set to.
return bool
        public bool SetTile(int x, int y, short index)
        {
            return _tiles.TrySet(x, y, index);
        }