aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/ILandObject.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/ILandObject.cs')
-rw-r--r--OpenSim/Region/Framework/Interfaces/ILandObject.cs13
1 files changed, 12 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/ILandObject.cs b/OpenSim/Region/Framework/Interfaces/ILandObject.cs
index 52cc6cf..db3c9bf 100644
--- a/OpenSim/Region/Framework/Interfaces/ILandObject.cs
+++ b/OpenSim/Region/Framework/Interfaces/ILandObject.cs
@@ -63,7 +63,6 @@ namespace OpenSim.Region.Framework.Interfaces
63 void forceUpdateLandInfo(); 63 void forceUpdateLandInfo();
64 void setLandBitmap(bool[,] bitmap); 64 void setLandBitmap(bool[,] bitmap);
65 65
66
67 bool[,] basicFullRegionLandBitmap(); 66 bool[,] basicFullRegionLandBitmap();
68 bool[,] getSquareLandBitmap(int start_x, int start_y, int end_x, int end_y); 67 bool[,] getSquareLandBitmap(int start_x, int start_y, int end_x, int end_y);
69 bool[,] modifyLandBitmapSquare(bool[,] land_bitmap, int start_x, int start_y, int end_x, int end_y, bool set_value); 68 bool[,] modifyLandBitmapSquare(bool[,] land_bitmap, int start_x, int start_y, int end_x, int end_y, bool set_value);
@@ -79,5 +78,17 @@ namespace OpenSim.Region.Framework.Interfaces
79 78
80 void setParcelObjectMaxOverride(overrideParcelMaxPrimCountDelegate overrideDel); 79 void setParcelObjectMaxOverride(overrideParcelMaxPrimCountDelegate overrideDel);
81 void setSimulatorObjectMaxOverride(overrideSimulatorMaxPrimCountDelegate overrideDel); 80 void setSimulatorObjectMaxOverride(overrideSimulatorMaxPrimCountDelegate overrideDel);
81
82 /// <summary>
83 /// Set the media url for this land parcel
84 /// </summary>
85 /// <param name="url"></param>
86 void SetMediaUrl(string url);
87
88 /// <summary>
89 /// Set the music url for this land parcel
90 /// </summary>
91 /// <param name="url"></param>
92 void SetMusicUrl(string url);
82 } 93 }
83} 94}