Files
opensim/OpenSim/Framework/ViewerEffectEventHandlerArg.cs
2008-07-11 09:18:17 +00:00

15 lines
311 B
C#

using System;
using libsecondlife;
namespace OpenSim.Framework
{
public class ViewerEffectEventHandlerArg : EventArgs
{
public LLUUID AgentID;
public byte[] Color;
public float Duration;
public LLUUID ID;
public byte Type;
public byte[] TypeData;
}
}