aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/IClientAPI.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index e482cca..ada5ff0 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -180,6 +180,8 @@ namespace OpenSim.Framework
180 180
181 public delegate void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY); 181 public delegate void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY);
182 182
183 public delegate void RequestMapName(IClientAPI remoteClient, string mapName);
184
183 public delegate void TeleportLocationRequest( 185 public delegate void TeleportLocationRequest(
184 IClientAPI remoteClient, ulong regionHandle, LLVector3 position, LLVector3 lookAt, uint flags); 186 IClientAPI remoteClient, ulong regionHandle, LLVector3 position, LLVector3 lookAt, uint flags);
185 187
@@ -297,6 +299,7 @@ namespace OpenSim.Framework
297 event LinkObjects OnLinkObjects; 299 event LinkObjects OnLinkObjects;
298 event DelinkObjects OnDelinkObjects; 300 event DelinkObjects OnDelinkObjects;
299 event RequestMapBlocks OnRequestMapBlocks; 301 event RequestMapBlocks OnRequestMapBlocks;
302 event RequestMapName OnMapNameRequest;
300 event TeleportLocationRequest OnTeleportLocationRequest; 303 event TeleportLocationRequest OnTeleportLocationRequest;
301 event DisconnectUser OnDisconnectUser; 304 event DisconnectUser OnDisconnectUser;
302 event RequestAvatarProperties OnRequestAvatarProperties; 305 event RequestAvatarProperties OnRequestAvatarProperties;