Add delete maptile ability to MapImageService - yet untested

This commit is contained in:
Melanie Thielker
2014-03-18 02:16:00 +01:00
parent 321bde8a3a
commit c0cdc6b74f
3 changed files with 92 additions and 2 deletions

View File

@@ -35,6 +35,7 @@ namespace OpenSim.Services.Interfaces
{
//List<MapBlockData> GetMapBlocks(UUID scopeID, int minX, int minY, int maxX, int maxY);
bool AddMapTile(int x, int y, byte[] imageData, out string reason);
bool RemoveMapTile(int x, int y, out string reason);
byte[] GetMapTile(string fileName, out string format);
}
}