mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
Change the map tile system to be multi-grid hosting compatible
This commit is contained in:
@@ -34,8 +34,8 @@ namespace OpenSim.Services.Interfaces
|
||||
public interface IMapImageService
|
||||
{
|
||||
//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);
|
||||
bool AddMapTile(int x, int y, byte[] imageData, UUID scopeID, out string reason);
|
||||
bool RemoveMapTile(int x, int y, UUID scopeID, out string reason);
|
||||
byte[] GetMapTile(string fileName, UUID scopeID, out string format);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user