* Switched Simian over to ExtensionLoader git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2258 52acb1d6-8a22-11de-b505-999d5b087335
21 lines
420 B
C#
21 lines
420 B
C#
using System;
|
|
|
|
namespace ExtensionLoader
|
|
{
|
|
/// <summary>
|
|
/// Abstract base for extensions
|
|
/// </summary>
|
|
public interface IExtension
|
|
{
|
|
/// <summary>
|
|
/// Called when the extension is starting
|
|
/// </summary>
|
|
void Start();
|
|
|
|
/// <summary>
|
|
/// Called when the extension is stopping
|
|
/// </summary>
|
|
void Stop();
|
|
}
|
|
}
|