Layer.Layer C# (CSharp) Метод

Layer() публичный Метод

public Layer ( TileSet, tileset, string data, int currentLayerID, int width, int height ) : System
tileset TileSet,
data string
currentLayerID int
width int
height int
Результат System
    public Layer(TileSet tileset, string data, int currentLayerID, int width, int height)
    {
        this._tileset = tileset;
        this._data = data.Split (',');
        this._currentLayerID = currentLayerID;
        this._width = width;
        this._height = height;
    }