MegaMan.LevelEditor.TileChange.TileChange C# (CSharp) Метод

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

public TileChange ( int tx, int ty, int oldId, int newId, ScreenDrawingSurface surface ) : System.Collections.Generic
tx int
ty int
oldId int
newId int
surface ScreenDrawingSurface
Результат System.Collections.Generic
        public TileChange(int tx, int ty, int oldId, int newId, ScreenDrawingSurface surface)
        {
            tileX = tx;
            tileY = ty;
            oldTileId = oldId;
            newTileId = newId;
            Surface = surface;
        }