aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IWindModule.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IWindModule.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IWindModule.cs b/OpenSim/Region/Framework/Interfaces/IWindModule.cs
index 84effd0..fe5d3ac 100644
--- a/OpenSim/Region/Framework/Interfaces/IWindModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/IWindModule.cs
@@ -36,5 +36,20 @@ namespace OpenSim.Region.Framework.Interfaces
36 /// Retrieves the current wind speed at the given Region Coordinates 36 /// Retrieves the current wind speed at the given Region Coordinates
37 /// </summary> 37 /// </summary>
38 Vector3 WindSpeed(int x, int y, int z); 38 Vector3 WindSpeed(int x, int y, int z);
39
40 /// <summary>
41 /// Set Wind Plugin Parameter
42 /// </summary>
43 void WindParamSet(string plugin, string param, float value);
44
45 /// <summary>
46 /// Get Wind Plugin Parameter
47 /// </summary>
48 float WindParamGet(string plugin, string param);
49
50 /// <summary>
51 /// Current active wind model plugin or String.Empty
52 /// </summary>
53 string WindActiveModelPluginName { get; }
39 } 54 }
40} 55}