diff options
Merge commit 'aa19ccf65c9cd235e0ba941e9832c5240df4412c' into bigmerge
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index f02543d..0557fb6 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -1101,7 +1101,14 @@ namespace OpenSim.Framework | |||
1101 | void SetChildAgentThrottle(byte[] throttle); | 1101 | void SetChildAgentThrottle(byte[] throttle); |
1102 | 1102 | ||
1103 | void SendAvatarDataImmediate(ISceneEntity avatar); | 1103 | void SendAvatarDataImmediate(ISceneEntity avatar); |
1104 | void SendPrimUpdate(ISceneEntity entity, PrimUpdateFlags updateFlags); | 1104 | |
1105 | /// <summary> | ||
1106 | /// Send a positional, velocity, etc. update to the viewer for a given entity. | ||
1107 | /// </summary> | ||
1108 | /// <param name="entity"></param> | ||
1109 | /// <param name="updateFlags"></param> | ||
1110 | void SendEntityUpdate(ISceneEntity entity, PrimUpdateFlags updateFlags); | ||
1111 | |||
1105 | void ReprioritizeUpdates(); | 1112 | void ReprioritizeUpdates(); |
1106 | void FlushPrimUpdates(); | 1113 | void FlushPrimUpdates(); |
1107 | 1114 | ||