From 9f25f70b248c37f9b112a83094cb471f2dbd31b2 Mon Sep 17 00:00:00 2001 From: MW Date: Sun, 10 Jun 2007 12:28:41 +0000 Subject: Messed up the renaming of the folder, so part one of the fix --- OpenSim/OpenSim.Reg/Avatar.Update.cs | 121 +++++++++++++++++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 OpenSim/OpenSim.Reg/Avatar.Update.cs (limited to 'OpenSim/OpenSim.Reg/Avatar.Update.cs') diff --git a/OpenSim/OpenSim.Reg/Avatar.Update.cs b/OpenSim/OpenSim.Reg/Avatar.Update.cs new file mode 100644 index 0000000..2c28807 --- /dev/null +++ b/OpenSim/OpenSim.Reg/Avatar.Update.cs @@ -0,0 +1,121 @@ +using System; +using System.Collections.Generic; +using System.Text; +using libsecondlife; +using libsecondlife.Packets; +using OpenSim.Physics.Manager; +using OpenSim.Framework.Interfaces; + +namespace OpenSim.Region +{ + partial class Avatar + { + /// + /// + /// + public override void update() + { + + + } + + /// + /// + /// + /// + public void SendUpdateToOtherClient(Avatar remoteAvatar) + { + + } + + /// + /// + /// + /// + public ObjectUpdatePacket CreateUpdatePacket() + { + return null; + } + + /// + /// + /// + public void SendInitialPosition() + { + this.ControllingClient.SendAvatarData(m_regionInfo, this.firstname, this.lastname, this.uuid, this.localid, new LLVector3(128, 128, 60)); + } + + /// + /// + /// + public void SendOurAppearance() + { + + } + + /// + /// + /// + /// + public void SendOurAppearance(IClientAPI OurClient) + { + this.ControllingClient.SendWearables(this.Wearables); + } + + /// + /// + /// + /// + public void SendAppearanceToOtherAgent(Avatar avatarInfo) + { + + } + + /// + /// + /// + /// + /// + public void SetAppearance(byte[] texture, AgentSetAppearancePacket.VisualParamBlock[] visualParam) + { + + } + + /// + /// + /// + public void StopMovement() + { + + } + + /// + /// Very likely to be deleted soon! + /// + /// + public ImprovedTerseObjectUpdatePacket.ObjectDataBlock CreateTerseBlock() + { + return null; + } + + /// + /// + /// + /// + /// + public void SendAnimPack(LLUUID animID, int seq) + { + + + } + + /// + /// + /// + public void SendAnimPack() + { + + } + + } +} -- cgit v1.1