aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorDalien Talbot2007-11-18 04:00:04 +0000
committerDalien Talbot2007-11-18 04:00:04 +0000
commit793813a6a69854c26ec5c64c6625db98c756a1cd (patch)
tree77a41de30350ba91225c6b19fa4737e8e68e6848 /OpenSim/Framework/IClientAPI.cs
parentimproved avatar logic -- walk up low steps now, sorta (diff)
downloadopensim-SC_OLD-793813a6a69854c26ec5c64c6625db98c756a1cd.zip
opensim-SC_OLD-793813a6a69854c26ec5c64c6625db98c756a1cd.tar.gz
opensim-SC_OLD-793813a6a69854c26ec5c64c6625db98c756a1cd.tar.bz2
opensim-SC_OLD-793813a6a69854c26ec5c64c6625db98c756a1cd.tar.xz
Added handler for MapNameRequest - OnMapNameRequest
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;