aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorTeravus Ovares2007-11-12 23:46:26 +0000
committerTeravus Ovares2007-11-12 23:46:26 +0000
commitd9d35f9fd7141d8f7a5b3b056cae051d6de2efd5 (patch)
tree37a49b26a6cb07d1fdc3e419222ea2147eaa089e /OpenSim/Framework/IClientAPI.cs
parent* Added a lot of Glue to help with reporting proper collisions. (diff)
downloadopensim-SC_OLD-d9d35f9fd7141d8f7a5b3b056cae051d6de2efd5.zip
opensim-SC_OLD-d9d35f9fd7141d8f7a5b3b056cae051d6de2efd5.tar.gz
opensim-SC_OLD-d9d35f9fd7141d8f7a5b3b056cae051d6de2efd5.tar.bz2
opensim-SC_OLD-d9d35f9fd7141d8f7a5b3b056cae051d6de2efd5.tar.xz
* Implemented Walk Vs Run in ODE. Also helps make the walk look smoother.
* All thanks to unimplemented packet listing :D
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index a7238fd..5d7bdd4 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -184,6 +184,7 @@ namespace OpenSim.Framework
184 public delegate void DisconnectUser(); 184 public delegate void DisconnectUser();
185 185
186 public delegate void RequestAvatarProperties(IClientAPI remoteClient, LLUUID avatarID); 186 public delegate void RequestAvatarProperties(IClientAPI remoteClient, LLUUID avatarID);
187 public delegate void SetAlwaysRun (IClientAPI remoteClient, bool SetAlwaysRun);
187 188
188 public delegate void GenericCall2(); 189 public delegate void GenericCall2();
189 190
@@ -293,7 +294,7 @@ namespace OpenSim.Framework
293 event TeleportLocationRequest OnTeleportLocationRequest; 294 event TeleportLocationRequest OnTeleportLocationRequest;
294 event DisconnectUser OnDisconnectUser; 295 event DisconnectUser OnDisconnectUser;
295 event RequestAvatarProperties OnRequestAvatarProperties; 296 event RequestAvatarProperties OnRequestAvatarProperties;
296 297 event SetAlwaysRun OnSetAlwaysRun;
297 event GenericCall4 OnDeRezObject; 298 event GenericCall4 OnDeRezObject;
298 event Action<IClientAPI> OnRegionHandShakeReply; 299 event Action<IClientAPI> OnRegionHandShakeReply;
299 event GenericCall2 OnRequestWearables; 300 event GenericCall2 OnRequestWearables;