diff options
author | lbsa71 | 2008-07-08 11:25:18 +0000 |
---|---|---|
committer | lbsa71 | 2008-07-08 11:25:18 +0000 |
commit | d9b802bb26ee659a68270ac05ea0406389afc883 (patch) | |
tree | 54a53c343d14e15a6236a0c36daa228f07ae57b6 /OpenSim/Framework/RegionInfoForEstateMenuArgs.cs | |
parent | RegionInfo.configMember can be null for dynamically created regions (diff) | |
download | opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.zip opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.tar.gz opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.tar.bz2 opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.tar.xz |
* Split out various classes from IClientAPI into their own files, in accordance with code standards
Diffstat (limited to 'OpenSim/Framework/RegionInfoForEstateMenuArgs.cs')
-rw-r--r-- | OpenSim/Framework/RegionInfoForEstateMenuArgs.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/OpenSim/Framework/RegionInfoForEstateMenuArgs.cs b/OpenSim/Framework/RegionInfoForEstateMenuArgs.cs new file mode 100644 index 0000000..081017b --- /dev/null +++ b/OpenSim/Framework/RegionInfoForEstateMenuArgs.cs | |||
@@ -0,0 +1,24 @@ | |||
1 | using System; | ||
2 | |||
3 | namespace OpenSim.Framework | ||
4 | { | ||
5 | public class RegionInfoForEstateMenuArgs : EventArgs | ||
6 | { | ||
7 | public float billableFactor; | ||
8 | public uint estateID; | ||
9 | public byte maxAgents; | ||
10 | public float objectBonusFactor; | ||
11 | public uint parentEstateID; | ||
12 | public int pricePerMeter; | ||
13 | public int redirectGridX; | ||
14 | public int redirectGridY; | ||
15 | public uint regionFlags; | ||
16 | public byte simAccess; | ||
17 | public float sunHour; | ||
18 | public float terrainLowerLimit; | ||
19 | public float terrainRaiseLimit; | ||
20 | public bool useEstateSun; | ||
21 | public float waterHeight; | ||
22 | public string simName; | ||
23 | } | ||
24 | } \ No newline at end of file | ||