* Converted the current Simian packet callbacks to an extension * Added README explaining Simian extension development * Added an example of a Simian.*.cs plugin git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2096 52acb1d6-8a22-11de-b505-999d5b087335
23 lines
485 B
C#
23 lines
485 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Simian
|
|
{
|
|
/// <summary>
|
|
/// Abstract base for rendering plugins
|
|
/// </summary>
|
|
public interface ISimianExtension
|
|
{
|
|
/// <summary>
|
|
/// Called when the simulator is initializing
|
|
/// </summary>
|
|
void Start();
|
|
|
|
/// <summary>
|
|
/// Called when the simulator is shutting down
|
|
/// </summary>
|
|
void Stop();
|
|
}
|
|
}
|