Files
libremetaverse/Programs/Simian/Interfaces/IAvatarProvider.cs
John Hurliman 344d327a15 * Removed all strings from _Packets_.cs, including warning messages for null arrays and Packet.ToString(). GridProxy needs a new Packet.ToString() method that uses reflection now
* Fixed foliage decoding and removed OnNewFoliage in favor of OnNewPrim only
* Flexi, light, sculpt, and object properties (all inside of Primitive) are now classes that can be null instead of structs
* Added Primitive.GetExtraParamsBytes()
* Massive improvements to Simian and periscope

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2384 52acb1d6-8a22-11de-b505-999d5b087335
2008-12-18 21:45:38 +00:00

18 lines
469 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);
void SendAlert(Agent agent, string message);
}
}