mirror of
https://github.com/opensim/opensim.git
synced 2026-05-23 17:26:50 +08:00
18 lines
349 B
C#
18 lines
349 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Mono.Addins;
|
|
using Mono.Addins.Description;
|
|
|
|
[assembly: AddinRoot("OpenSim", "0.4")]
|
|
namespace OpenSim
|
|
{
|
|
[TypeExtensionPoint("/OpenSim/Startup")]
|
|
public interface IApplicationPlugin
|
|
{
|
|
void Initialise(OpenSimMain openSim);
|
|
void Close();
|
|
}
|
|
}
|
|
|