* Added experimental JSON serialization/deserialization to OSD using LitJSON (works, but subject to change soon) * Moved packet handling code out of Simian.cs git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2361 52acb1d6-8a22-11de-b505-999d5b087335
15 lines
369 B
C#
15 lines
369 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);
|
|
void Disconnect(Agent agent);
|
|
}
|
|
}
|