diff options
author | MW | 2007-07-04 19:07:27 +0000 |
---|---|---|
committer | MW | 2007-07-04 19:07:27 +0000 |
commit | beb3073bec9438a439e13eaec40a8320a9279adc (patch) | |
tree | 04ad41c83427605d910a0d4ed2cfa560a30a8066 /OpenSim/Framework | |
parent | * re-fixed the utf-16 bug in xmlRpcResponse serialization (diff) | |
download | opensim-SC_OLD-beb3073bec9438a439e13eaec40a8320a9279adc.zip opensim-SC_OLD-beb3073bec9438a439e13eaec40a8320a9279adc.tar.gz opensim-SC_OLD-beb3073bec9438a439e13eaec40a8320a9279adc.tar.bz2 opensim-SC_OLD-beb3073bec9438a439e13eaec40a8320a9279adc.tar.xz |
A bit more work on Building tools/support.
updated Axiom.MathLib.dll.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/General/Interfaces/IClientAPI.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Framework/General/Interfaces/IClientAPI.cs b/OpenSim/Framework/General/Interfaces/IClientAPI.cs index c3291c4..2c7e143 100644 --- a/OpenSim/Framework/General/Interfaces/IClientAPI.cs +++ b/OpenSim/Framework/General/Interfaces/IClientAPI.cs | |||
@@ -56,6 +56,7 @@ namespace OpenSim.Framework.Interfaces | |||
56 | public delegate void UpdatePrimTexture(uint localID, byte[] texture, IClientAPI remoteClient); | 56 | public delegate void UpdatePrimTexture(uint localID, byte[] texture, IClientAPI remoteClient); |
57 | public delegate void UpdateVector(uint localID, LLVector3 pos, IClientAPI remoteClient); | 57 | public delegate void UpdateVector(uint localID, LLVector3 pos, IClientAPI remoteClient); |
58 | public delegate void UpdatePrimRotation(uint localID, LLQuaternion rot, IClientAPI remoteClient); | 58 | public delegate void UpdatePrimRotation(uint localID, LLQuaternion rot, IClientAPI remoteClient); |
59 | public delegate void UpdatePrimSingleRotation(uint localID, LLQuaternion rot, IClientAPI remoteClient); | ||
59 | public delegate void UpdatePrimGroupRotation(uint localID,LLVector3 pos, LLQuaternion rot, IClientAPI remoteClient); | 60 | public delegate void UpdatePrimGroupRotation(uint localID,LLVector3 pos, LLQuaternion rot, IClientAPI remoteClient); |
60 | public delegate void StatusChange(bool status); | 61 | public delegate void StatusChange(bool status); |
61 | public delegate void NewAvatar(IClientAPI remoteClient, LLUUID agentID, bool status); | 62 | public delegate void NewAvatar(IClientAPI remoteClient, LLUUID agentID, bool status); |
@@ -100,7 +101,9 @@ namespace OpenSim.Framework.Interfaces | |||
100 | event UpdatePrimFlags OnUpdatePrimFlags; | 101 | event UpdatePrimFlags OnUpdatePrimFlags; |
101 | event UpdatePrimTexture OnUpdatePrimTexture; | 102 | event UpdatePrimTexture OnUpdatePrimTexture; |
102 | event UpdateVector OnUpdatePrimPosition; | 103 | event UpdateVector OnUpdatePrimPosition; |
104 | event UpdateVector OnUpdatePrimSinglePosition; | ||
103 | event UpdatePrimRotation OnUpdatePrimRotation; | 105 | event UpdatePrimRotation OnUpdatePrimRotation; |
106 | event UpdatePrimSingleRotation OnUpdatePrimSingleRotation; | ||
104 | event UpdatePrimGroupRotation OnUpdatePrimGroupRotation; | 107 | event UpdatePrimGroupRotation OnUpdatePrimGroupRotation; |
105 | event UpdateVector OnUpdatePrimScale; | 108 | event UpdateVector OnUpdatePrimScale; |
106 | event StatusChange OnChildAgentStatus; | 109 | event StatusChange OnChildAgentStatus; |