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