Files
libremetaverse/Programs/Simian/Interfaces/IAvatarProvider.cs
John Hurliman 194752abc1 * Moved TexturePipeline into libOpenMetaverse (still needs to be instantiated separately)
* Moved TextureCache into its own file
* New version of Periscope, major improvements. Check the Simian.ini file for usage, and change the const values in Periscope.cs
* Lots of miscellaneous cleanups and improvements in Simian

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2383 52acb1d6-8a22-11de-b505-999d5b087335
2008-12-17 03:49:42 +00:00

16 lines
413 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 Disconnect(Agent agent);
}
}