* minor: method documentation

This commit is contained in:
Justin Clarke Casey
2008-09-16 16:37:16 +00:00
parent f46fc508d1
commit 7f3bfa277b
8 changed files with 95 additions and 44 deletions

View File

@@ -161,17 +161,20 @@ namespace OpenSim.Region.ScriptEngine.Shared
}
}
/// <summary>
/// Holds all the data required to execute a scripting event.
/// </summary>
public class EventParams
{
public EventParams(string eventName, Object[] eventParams, DetectParams[] detectParams)
{
EventName=eventName;
Params=eventParams;
DetectParams=detectParams;
EventName = eventName;
Params = eventParams;
DetectParams = detectParams;
}
public string EventName;
public Object[] Params;
public DetectParams[] DetectParams;
}
}
}