diff options
Diffstat (limited to '')
-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 | ||