aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IWindModule.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/IWindModule.cs')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IWindModule.cs9
1 files changed, 5 insertions, 4 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IWindModule.cs b/OpenSim/Region/Framework/Interfaces/IWindModule.cs
index 5b8b0ce..84effd0 100644
--- a/OpenSim/Region/Framework/Interfaces/IWindModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/IWindModule.cs
@@ -31,9 +31,10 @@ namespace OpenSim.Region.Framework.Interfaces
31{ 31{
32 public interface IWindModule : IRegionModule 32 public interface IWindModule : IRegionModule
33 { 33 {
34 Vector2[] WindSpeeds 34
35 { 35 /// <summary>
36 get; 36 /// Retrieves the current wind speed at the given Region Coordinates
37 } 37 /// </summary>
38 Vector3 WindSpeed(int x, int y, int z);
38 } 39 }
39} 40}