From d9b802bb26ee659a68270ac05ea0406389afc883 Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Tue, 8 Jul 2008 11:25:18 +0000 Subject: * Split out various classes from IClientAPI into their own files, in accordance with code standards --- OpenSim/Framework/UpdateShapeArgs.cs | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 OpenSim/Framework/UpdateShapeArgs.cs (limited to 'OpenSim/Framework/UpdateShapeArgs.cs') 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 @@ +using System; + +namespace OpenSim.Framework +{ + public class UpdateShapeArgs : EventArgs + { + public uint ObjectLocalID; + public ushort PathBegin; + public byte PathCurve; + public ushort PathEnd; + public sbyte PathRadiusOffset; + public byte PathRevolutions; + public byte PathScaleX; + public byte PathScaleY; + public byte PathShearX; + public byte PathShearY; + public sbyte PathSkew; + public sbyte PathTaperX; + public sbyte PathTaperY; + public sbyte PathTwist; + public sbyte PathTwistBegin; + public ushort ProfileBegin; + public byte ProfileCurve; + public ushort ProfileEnd; + public ushort ProfileHollow; + } +} \ No newline at end of file -- cgit v1.1