diff options
author | Teravus Ovares (Dan Olivares) | 2009-08-12 22:54:57 -0400 |
---|---|---|
committer | Teravus Ovares (Dan Olivares) | 2009-08-12 22:54:57 -0400 |
commit | b47e405420b316a2f68b3e6f4c5ed35dc713260e (patch) | |
tree | 6adc5abfc676dd57440b13918df3778cdbd35672 /OpenSim/Region/Application/IApplicationPlugin.cs | |
parent | * Added two new packet handler implementations for inventory ops. This is sta... (diff) | |
download | opensim-SC_OLD-b47e405420b316a2f68b3e6f4c5ed35dc713260e.zip opensim-SC_OLD-b47e405420b316a2f68b3e6f4c5ed35dc713260e.tar.gz opensim-SC_OLD-b47e405420b316a2f68b3e6f4c5ed35dc713260e.tar.bz2 opensim-SC_OLD-b47e405420b316a2f68b3e6f4c5ed35dc713260e.tar.xz |
* minor: Comments
Diffstat (limited to 'OpenSim/Region/Application/IApplicationPlugin.cs')
-rw-r--r-- | OpenSim/Region/Application/IApplicationPlugin.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/IApplicationPlugin.cs b/OpenSim/Region/Application/IApplicationPlugin.cs index 1e1dae0..6e6d48c 100644 --- a/OpenSim/Region/Application/IApplicationPlugin.cs +++ b/OpenSim/Region/Application/IApplicationPlugin.cs | |||
@@ -29,12 +29,24 @@ using OpenSim.Framework; | |||
29 | 29 | ||
30 | namespace OpenSim | 30 | namespace OpenSim |
31 | { | 31 | { |
32 | /// <summary> | ||
33 | /// OpenSimulator Application Plugin framework interface | ||
34 | /// </summary> | ||
32 | public interface IApplicationPlugin : IPlugin | 35 | public interface IApplicationPlugin : IPlugin |
33 | { | 36 | { |
37 | /// <summary> | ||
38 | /// Initialize the Plugin | ||
39 | /// </summary> | ||
40 | /// <param name="openSim">The Application instance</param> | ||
34 | void Initialise(OpenSimBase openSim); | 41 | void Initialise(OpenSimBase openSim); |
42 | |||
43 | /// <summary> | ||
44 | /// Called when the application loading is completed | ||
45 | /// </summary> | ||
35 | void PostInitialise(); | 46 | void PostInitialise(); |
36 | } | 47 | } |
37 | 48 | ||
49 | |||
38 | public class ApplicationPluginInitialiser : PluginInitialiserBase | 50 | public class ApplicationPluginInitialiser : PluginInitialiserBase |
39 | { | 51 | { |
40 | private OpenSimBase server; | 52 | private OpenSimBase server; |