diff options
author | MW | 2007-11-04 14:38:12 +0000 |
---|---|---|
committer | MW | 2007-11-04 14:38:12 +0000 |
commit | ef2cea41ce79eefd2f6848b1bbe59c51d3058e52 (patch) | |
tree | 8bd3f1646d6866f4d99acc419e6b6f3e95c6b0fa /OpenSim | |
parent | normalized line endings (diff) | |
download | opensim-SC_OLD-ef2cea41ce79eefd2f6848b1bbe59c51d3058e52.zip opensim-SC_OLD-ef2cea41ce79eefd2f6848b1bbe59c51d3058e52.tar.gz opensim-SC_OLD-ef2cea41ce79eefd2f6848b1bbe59c51d3058e52.tar.bz2 opensim-SC_OLD-ef2cea41ce79eefd2f6848b1bbe59c51d3058e52.tar.xz |
Added forgotten IApplicationPlugin file
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Application/IApplicationPlugin.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/IApplicationPlugin.cs b/OpenSim/Region/Application/IApplicationPlugin.cs new file mode 100644 index 0000000..31ff0cf --- /dev/null +++ b/OpenSim/Region/Application/IApplicationPlugin.cs | |||
@@ -0,0 +1,17 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using Mono.Addins; | ||
5 | using Mono.Addins.Description; | ||
6 | |||
7 | [assembly: AddinRoot("OpenSim", "0.4")] | ||
8 | namespace OpenSim | ||
9 | { | ||
10 | [TypeExtensionPoint("/OpenSim/Startup")] | ||
11 | public interface IApplicationPlugin | ||
12 | { | ||
13 | void Initialise(OpenSimMain openSim); | ||
14 | void Close(); | ||
15 | } | ||
16 | } | ||
17 | |||