mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 08:55:56 +08:00
* Split out various classes from IClientAPI into their own files, in accordance with code standards
This commit is contained in:
27
OpenSim/Framework/UpdateShapeArgs.cs
Normal file
27
OpenSim/Framework/UpdateShapeArgs.cs
Normal file
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user