aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Simulation/Scenes/IScenePresenceBody.cs
blob: 36023d0abae19933220a6fe3f624cbfcb24ab37f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Text;
using libsecondlife;
using libsecondlife.Packets;
using OpenSim.Physics.Manager;
using OpenSim.Framework.Interfaces;
using OpenSim.Framework.Types;

namespace OpenSim.Region.Environment.Scenes
{
    public interface IScenePresenceBody
    {
        void processMovement(IClientAPI remoteClient, uint flags, LLQuaternion bodyRotation);
        void SetAppearance(byte[] texture, AgentSetAppearancePacket.VisualParamBlock[] visualParam);
        void SendOurAppearance(IClientAPI OurClient);
        void SendAppearanceToOtherAgent(ScenePresence avatarInfo);
    }
}