diff options
Diffstat (limited to 'OpenSim/Region/Environment/Modules/GroupsModule.cs')
-rw-r--r-- | OpenSim/Region/Environment/Modules/GroupsModule.cs | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/OpenSim/Region/Environment/Modules/GroupsModule.cs b/OpenSim/Region/Environment/Modules/GroupsModule.cs index fa5804e..e489207 100644 --- a/OpenSim/Region/Environment/Modules/GroupsModule.cs +++ b/OpenSim/Region/Environment/Modules/GroupsModule.cs | |||
@@ -1,33 +1,33 @@ | |||
1 | using OpenSim.Region.Environment.Interfaces; | 1 | using OpenSim.Region.Environment.Interfaces; |
2 | using OpenSim.Region.Environment.Scenes; | 2 | using OpenSim.Region.Environment.Scenes; |
3 | 3 | ||
4 | namespace OpenSim.Region.Environment.Modules | 4 | namespace OpenSim.Region.Environment.Modules |
5 | { | 5 | { |
6 | public class GroupsModule : IRegionModule | 6 | public class GroupsModule : IRegionModule |
7 | { | 7 | { |
8 | private Scene m_scene; | 8 | private Scene m_scene; |
9 | 9 | ||
10 | public void Initialise(Scene scene) | 10 | public void Initialise(Scene scene) |
11 | { | 11 | { |
12 | m_scene = scene; | 12 | m_scene = scene; |
13 | } | 13 | } |
14 | 14 | ||
15 | public void PostInitialise() | 15 | public void PostInitialise() |
16 | { | 16 | { |
17 | } | 17 | } |
18 | 18 | ||
19 | public void CloseDown() | 19 | public void Close() |
20 | { | 20 | { |
21 | } | 21 | } |
22 | 22 | ||
23 | public string GetName() | 23 | public string Name |
24 | { | 24 | { |
25 | return "GroupsModule"; | 25 | get { return "GroupsModule"; } |
26 | } | 26 | } |
27 | 27 | ||
28 | public bool IsSharedModule() | 28 | public bool IsSharedModule |
29 | { | 29 | { |
30 | return false; | 30 | get { return false; } |
31 | } | 31 | } |
32 | } | 32 | } |
33 | } \ No newline at end of file | 33 | } \ No newline at end of file |