diff options
author | Adam Frisby | 2007-07-11 08:10:25 +0000 |
---|---|---|
committer | Adam Frisby | 2007-07-11 08:10:25 +0000 |
commit | e2ff441e31328e60c8bb1d4bb32fa4ac64f91978 (patch) | |
tree | 8405b6cef57b66a58f31a24c859846085d0b81f7 /OpenSim/Region/Environment/Scenes/IScenePresenceBody.cs | |
parent | * Wiping trunk in prep for Sugilite (diff) | |
parent | * Applying dalien's patches from bug#177 and #179 (diff) | |
download | opensim-SC_OLD-e2ff441e31328e60c8bb1d4bb32fa4ac64f91978.zip opensim-SC_OLD-e2ff441e31328e60c8bb1d4bb32fa4ac64f91978.tar.gz opensim-SC_OLD-e2ff441e31328e60c8bb1d4bb32fa4ac64f91978.tar.bz2 opensim-SC_OLD-e2ff441e31328e60c8bb1d4bb32fa4ac64f91978.tar.xz |
* Bringing Sugilite in to trunk
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/IScenePresenceBody.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/IScenePresenceBody.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/IScenePresenceBody.cs b/OpenSim/Region/Environment/Scenes/IScenePresenceBody.cs new file mode 100644 index 0000000..7c3a033 --- /dev/null +++ b/OpenSim/Region/Environment/Scenes/IScenePresenceBody.cs | |||
@@ -0,0 +1,14 @@ | |||
1 | using libsecondlife; | ||
2 | using libsecondlife.Packets; | ||
3 | using OpenSim.Framework.Interfaces; | ||
4 | |||
5 | namespace OpenSim.Region.Environment.Scenes | ||
6 | { | ||
7 | public interface IScenePresenceBody | ||
8 | { | ||
9 | void processMovement(IClientAPI remoteClient, uint flags, LLQuaternion bodyRotation); | ||
10 | void SetAppearance(byte[] texture, AgentSetAppearancePacket.VisualParamBlock[] visualParam); | ||
11 | void SendOurAppearance(IClientAPI OurClient); | ||
12 | void SendAppearanceToOtherAgent(ScenePresence avatarInfo); | ||
13 | } | ||
14 | } | ||