15 lines
311 B
C#
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;
|
|
}
|
|
} |