Added forgotten IApplicationPlugin file

afrisby
MW 2007-11-04 14:38:12 +00:00
parent 2d1c255e8c
commit ef2cea41ce
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
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();
}
}