aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework')
-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 a070aa6..258b3eb 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -84,6 +84,8 @@ namespace OpenSim.Framework
84 public delegate void TeleportLandmarkRequest( 84 public delegate void TeleportLandmarkRequest(
85 IClientAPI remoteClient, AssetLandmark lm); 85 IClientAPI remoteClient, AssetLandmark lm);
86 86
87 public delegate void TeleportCancel(IClientAPI remoteClient);
88
87 public delegate void DisconnectUser(); 89 public delegate void DisconnectUser();
88 90
89 public delegate void RequestAvatarProperties(IClientAPI remoteClient, UUID avatarID); 91 public delegate void RequestAvatarProperties(IClientAPI remoteClient, UUID avatarID);
@@ -788,6 +790,7 @@ namespace OpenSim.Framework
788 event RequestAvatarProperties OnRequestAvatarProperties; 790 event RequestAvatarProperties OnRequestAvatarProperties;
789 event SetAlwaysRun OnSetAlwaysRun; 791 event SetAlwaysRun OnSetAlwaysRun;
790 event TeleportLandmarkRequest OnTeleportLandmarkRequest; 792 event TeleportLandmarkRequest OnTeleportLandmarkRequest;
793 event TeleportCancel OnTeleportCancel;
791 event DeRezObject OnDeRezObject; 794 event DeRezObject OnDeRezObject;
792 event Action<IClientAPI> OnRegionHandShakeReply; 795 event Action<IClientAPI> OnRegionHandShakeReply;
793 event GenericCall1 OnRequestWearables; 796 event GenericCall1 OnRequestWearables;