diff options
author | Melanie | 2013-05-04 00:45:27 +0200 |
---|---|---|
committer | Melanie | 2013-05-04 00:45:27 +0200 |
commit | 23324539745848f28308f3de28aa0278b662e1b5 (patch) | |
tree | 5d1d610386dca3e245f71b8ed6b4690b4c4f0434 /OpenSim/Region/Framework/Interfaces | |
parent | Add llGetPhysicsMaterial (diff) | |
download | opensim-SC-23324539745848f28308f3de28aa0278b662e1b5.zip opensim-SC-23324539745848f28308f3de28aa0278b662e1b5.tar.gz opensim-SC-23324539745848f28308f3de28aa0278b662e1b5.tar.bz2 opensim-SC-23324539745848f28308f3de28aa0278b662e1b5.tar.xz |
Add RegionManager level and the ability to use literal XML to the dynamic floater module
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IDynamicFloaterModule.cs | 1 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IDynamicMenuModule.cs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IDynamicFloaterModule.cs b/OpenSim/Region/Framework/Interfaces/IDynamicFloaterModule.cs index 5e633e6..65c42ff 100644 --- a/OpenSim/Region/Framework/Interfaces/IDynamicFloaterModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IDynamicFloaterModule.cs | |||
@@ -39,6 +39,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
39 | public abstract int Channel { get; } | 39 | public abstract int Channel { get; } |
40 | public abstract string FloaterName { get; } | 40 | public abstract string FloaterName { get; } |
41 | public virtual string XmlName { get; set; } | 41 | public virtual string XmlName { get; set; } |
42 | public virtual string XmlText { get; set; } | ||
42 | public virtual HandlerDelegate Handler { get; set; } | 43 | public virtual HandlerDelegate Handler { get; set; } |
43 | } | 44 | } |
44 | 45 | ||
diff --git a/OpenSim/Region/Framework/Interfaces/IDynamicMenuModule.cs b/OpenSim/Region/Framework/Interfaces/IDynamicMenuModule.cs index 08b71e4..4d000b6 100644 --- a/OpenSim/Region/Framework/Interfaces/IDynamicMenuModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IDynamicMenuModule.cs | |||
@@ -43,6 +43,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
43 | public enum UserMode : int | 43 | public enum UserMode : int |
44 | { | 44 | { |
45 | Normal = 0, | 45 | Normal = 0, |
46 | RegionManager = 2, | ||
46 | God = 3 | 47 | God = 3 |
47 | } | 48 | } |
48 | 49 | ||