* 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
16 lines
413 B
C#
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);
|
|
}
|
|
}
|