mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
* minor: method documentation
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user