mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 11:25:39 +08:00
24 lines
664 B
C#
24 lines
664 B
C#
using System;
|
|
|
|
namespace OpenSim.Framework
|
|
{
|
|
public class RegionInfoForEstateMenuArgs : EventArgs
|
|
{
|
|
public float billableFactor;
|
|
public uint estateID;
|
|
public byte maxAgents;
|
|
public float objectBonusFactor;
|
|
public uint parentEstateID;
|
|
public int pricePerMeter;
|
|
public int redirectGridX;
|
|
public int redirectGridY;
|
|
public uint regionFlags;
|
|
public byte simAccess;
|
|
public float sunHour;
|
|
public float terrainLowerLimit;
|
|
public float terrainRaiseLimit;
|
|
public bool useEstateSun;
|
|
public float waterHeight;
|
|
public string simName;
|
|
}
|
|
} |