aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces
diff options
context:
space:
mode:
authorMelanie Thielker2015-11-01 01:15:31 +0100
committerMelanie Thielker2015-11-01 01:15:31 +0100
commit6510ba8a646fecf54ecd6ac735a08bf661cc5b6d (patch)
tree9e32de715a617acad382e8ee79d7ba67c59fb422 /OpenSim/Services/Interfaces
parentMinor: Add an initializer to show what the default value would be. (diff)
downloadopensim-SC_OLD-6510ba8a646fecf54ecd6ac735a08bf661cc5b6d.zip
opensim-SC_OLD-6510ba8a646fecf54ecd6ac735a08bf661cc5b6d.tar.gz
opensim-SC_OLD-6510ba8a646fecf54ecd6ac735a08bf661cc5b6d.tar.bz2
opensim-SC_OLD-6510ba8a646fecf54ecd6ac735a08bf661cc5b6d.tar.xz
Plumb the special VeriableWearablesSuported field which we will
temporarily use to determine extended wearableness
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r--OpenSim/Services/Interfaces/ISimulationService.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/ISimulationService.cs b/OpenSim/Services/Interfaces/ISimulationService.cs
index 089507e..8a25509 100644
--- a/OpenSim/Services/Interfaces/ISimulationService.cs
+++ b/OpenSim/Services/Interfaces/ISimulationService.cs
@@ -40,10 +40,12 @@ namespace OpenSim.Services.Interfaces
40 { 40 {
41 InboundVersion = VersionInfo.SimulationServiceVersionAcceptedMax; 41 InboundVersion = VersionInfo.SimulationServiceVersionAcceptedMax;
42 OutboundVersion = VersionInfo.SimulationServiceVersionSupportedMax; 42 OutboundVersion = VersionInfo.SimulationServiceVersionSupportedMax;
43 VariableWearablesSupported = false;
43 } 44 }
44 45
45 public float InboundVersion { get; set; } 46 public float InboundVersion { get; set; }
46 public float OutboundVersion { get; set; } 47 public float OutboundVersion { get; set; }
48 public bool VariableWearablesSupported { get; set; }
47 } 49 }
48 50
49 public interface ISimulationService 51 public interface ISimulationService