* Several fixes in OpenMetaverse.Http.CapsServer and OpenMetaverse.Http.EventQueueServer (this is the first time they've been tested) [Simian] * Initial capabilities and EventQueue support (appears to be working) * HyperGrid is almost working * More cleanup with how agents are removed from the scene git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2427 52acb1d6-8a22-11de-b505-999d5b087335
17 lines
430 B
C#
17 lines
430 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);
|
|
bool ClearAnimations(Agent agent);
|
|
void SendAnimations(Agent agent);
|
|
|
|
void SendAlert(Agent agent, string message);
|
|
}
|
|
}
|