123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using OpenMetaverse;
- namespace OpenSim.Framework
- {
- public class ViewerEffectEventHandlerArg : EventArgs
- {
- public UUID AgentID;
- public byte[] Color;
- public float Duration;
- public UUID ID;
- public byte Type;
- public byte[] TypeData;
- }
- }
|