aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleModule
diff options
context:
space:
mode:
authorMelanie2010-12-04 04:25:08 +0000
committerMelanie2010-12-04 04:25:08 +0000
commit89fec4ff5b57d5bb6ac9997d517c9308d01d96e4 (patch)
treed7de55ec34f769e0536f63e81c1465ab6feac328 /OpenSim/Region/Examples/SimpleModule
parentConvert the agent asset transactions module to a new style module. (diff)
parentminor: add class doc line to older region module example code pointing toward... (diff)
downloadopensim-SC-89fec4ff5b57d5bb6ac9997d517c9308d01d96e4.zip
opensim-SC-89fec4ff5b57d5bb6ac9997d517c9308d01d96e4.tar.gz
opensim-SC-89fec4ff5b57d5bb6ac9997d517c9308d01d96e4.tar.bz2
opensim-SC-89fec4ff5b57d5bb6ac9997d517c9308d01d96e4.tar.xz
Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim
Diffstat (limited to 'OpenSim/Region/Examples/SimpleModule')
-rw-r--r--OpenSim/Region/Examples/SimpleModule/RegionModule.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/RegionModule.cs b/OpenSim/Region/Examples/SimpleModule/RegionModule.cs
index 6da41db..088b818 100644
--- a/OpenSim/Region/Examples/SimpleModule/RegionModule.cs
+++ b/OpenSim/Region/Examples/SimpleModule/RegionModule.cs
@@ -34,6 +34,17 @@ using OpenSim.Region.Framework.Scenes;
34 34
35namespace OpenSim.Region.Examples.SimpleModule 35namespace OpenSim.Region.Examples.SimpleModule
36{ 36{
37 /// <summary>
38 /// Example region module.
39 /// </summary>
40 /// <remarks>
41 /// This is an old and unmaintained region module which uses the old style module interface. It is not loaded into
42 /// OpenSim by default. If you want to try enabling it, look in the bin folder of this project.
43 /// Please see the README.txt in this project on the filesystem for some more information.
44 /// Nonetheless, it may contain some useful example code so has been left here for now.
45 ///
46 /// You can see bare bones examples of the more modern region module system in OpenSim/Region/OptionalModules/Example
47 /// </remarks>
37 public class RegionModule : IRegionModule 48 public class RegionModule : IRegionModule
38 { 49 {
39 #region IRegionModule Members 50 #region IRegionModule Members