mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 09:45:47 +08:00
* Split out various classes from IClientAPI into their own files, in accordance with code standards
This commit is contained in:
32
OpenSim/Framework/RegionHandshakeArgs.cs
Normal file
32
OpenSim/Framework/RegionHandshakeArgs.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using libsecondlife;
|
||||
|
||||
namespace OpenSim.Framework
|
||||
{
|
||||
public class RegionHandshakeArgs : EventArgs
|
||||
{
|
||||
public bool isEstateManager;
|
||||
public float billableFactor;
|
||||
public float terrainHeightRange0;
|
||||
public float terrainHeightRange1;
|
||||
public float terrainHeightRange2;
|
||||
public float terrainHeightRange3;
|
||||
public float terrainStartHeight0;
|
||||
public float terrainStartHeight1;
|
||||
public float terrainStartHeight2;
|
||||
public float terrainStartHeight3;
|
||||
public byte simAccess;
|
||||
public float waterHeight;
|
||||
public uint regionFlags;
|
||||
public string regionName;
|
||||
public LLUUID SimOwner;
|
||||
public LLUUID terrainBase0;
|
||||
public LLUUID terrainBase1;
|
||||
public LLUUID terrainBase2;
|
||||
public LLUUID terrainBase3;
|
||||
public LLUUID terrainDetail0;
|
||||
public LLUUID terrainDetail1;
|
||||
public LLUUID terrainDetail2;
|
||||
public LLUUID terrainDetail3;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user