Example #1
0
 public TmosTile LoadTile(int index)
 {
     return(TmosData.GetTile(Bytes, index));
 }
Example #2
0
 public TmosMiniTile LoadMiniTile(int index)
 {
     return(TmosData.GetMiniTile(Bytes, index));
 }
Example #3
0
 public TmosTileSection LoadTileSection(int index, int tileDataOffset)
 {
     return(TmosData.GetTileSection(Bytes, index, tileDataOffset));
 }
Example #4
0
 public TmosWorldScreenDataOffset LoadWorldScreenDataOffset(int index)
 {
     return(TmosData.GetWorldScreenDataOffset(Bytes, index));
 }
Example #5
0
 public void SaveWorldScreen(int index, TmosWorldScreen worldScreen)
 {
     TmosData.SaveWorldScreen(Bytes, index, worldScreen);
 }
Example #6
0
 public TmosWorldScreen LoadWorldScreen(int index)
 {
     return(TmosData.GetWorldScreen(Bytes, index));
 }
Example #7
0
 public byte[] LoadTileData()
 {
     return(TmosData.GetTileData(Bytes));
 }