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/UpdateShapeArgs.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/UpdateShapeArgs.cs')
-rw-r--r-- | OpenSim/Framework/UpdateShapeArgs.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/OpenSim/Framework/UpdateShapeArgs.cs b/OpenSim/Framework/UpdateShapeArgs.cs new file mode 100644 index 0000000..7dad33f --- /dev/null +++ b/OpenSim/Framework/UpdateShapeArgs.cs | |||
@@ -0,0 +1,27 @@ | |||
1 | using System; | ||
2 | |||
3 | namespace OpenSim.Framework | ||
4 | { | ||
5 | public class UpdateShapeArgs : EventArgs | ||
6 | { | ||
7 | public uint ObjectLocalID; | ||
8 | public ushort PathBegin; | ||
9 | public byte PathCurve; | ||
10 | public ushort PathEnd; | ||
11 | public sbyte PathRadiusOffset; | ||
12 | public byte PathRevolutions; | ||
13 | public byte PathScaleX; | ||
14 | public byte PathScaleY; | ||
15 | public byte PathShearX; | ||
16 | public byte PathShearY; | ||
17 | public sbyte PathSkew; | ||
18 | public sbyte PathTaperX; | ||
19 | public sbyte PathTaperY; | ||
20 | public sbyte PathTwist; | ||
21 | public sbyte PathTwistBegin; | ||
22 | public ushort ProfileBegin; | ||
23 | public byte ProfileCurve; | ||
24 | public ushort ProfileEnd; | ||
25 | public ushort ProfileHollow; | ||
26 | } | ||
27 | } \ No newline at end of file | ||