2008-08-22 19:20:02 +00:00
|
|
|
using System;
|
|
|
|
|
using OpenMetaverse;
|
|
|
|
|
|
|
|
|
|
namespace Simian
|
|
|
|
|
{
|
2008-08-24 05:06:51 +00:00
|
|
|
public interface IAvatarProvider
|
2008-08-22 19:20:02 +00:00
|
|
|
{
|
|
|
|
|
bool SetDefaultAnimation(Agent agent, UUID animID);
|
|
|
|
|
bool AddAnimation(Agent agent, UUID animID);
|
|
|
|
|
bool RemoveAnimation(Agent agent, UUID animID);
|
2008-12-17 03:49:42 +00:00
|
|
|
bool ClearAnimations(Agent agent);
|
2008-08-22 19:20:02 +00:00
|
|
|
void SendAnimations(Agent agent);
|
2008-12-18 21:45:38 +00:00
|
|
|
|
|
|
|
|
void SendAlert(Agent agent, string message);
|
2008-08-22 19:20:02 +00:00
|
|
|
}
|
|
|
|
|
}
|