Ultima.Map.Map C# (CSharp) Method

Map() public method

public Map ( int fileIndex, int mapID, int width, int height ) : System
fileIndex int
mapID int
width int
height int
return System
        public Map(int fileIndex, int mapID, int width, int height)
        {
            m_FileIndex = fileIndex;
            m_MapID = mapID;
            m_Width = width;
            m_Height = height;
            m_path = null;
        }

Same methods

Map::Map ( string path, int fileIndex, int mapID, int width, int height ) : System