* Split out various classes from IClientAPI into their own files, in accordance with code standards

This commit is contained in:
lbsa71
2008-07-08 11:25:18 +00:00
parent c1d5291ae0
commit d9b802bb26
16 changed files with 437 additions and 365 deletions

View File

@@ -0,0 +1,15 @@
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;
}
}