* LLObject is gone, it is now merged into Primitive * Avatar inherits from Primitive Simian: * Added SimulationObject to track prims * Added IMeshingProvider and a connector to OpenMetaverse.Rendering plugins git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2161 52acb1d6-8a22-11de-b505-999d5b087335
14 lines
330 B
C#
14 lines
330 B
C#
using System;
|
|
using OpenMetaverse;
|
|
|
|
namespace Simian
|
|
{
|
|
public interface IAvatarProvider
|
|
{
|
|
bool SetDefaultAnimation(Agent agent, UUID animID);
|
|
bool AddAnimation(Agent agent, UUID animID);
|
|
bool RemoveAnimation(Agent agent, UUID animID);
|
|
void SendAnimations(Agent agent);
|
|
}
|
|
}
|