diff --git a/OpenSim/Region/ScriptEngine/XEngine/EventManager.cs b/OpenSim/Region/ScriptEngine/XEngine/EventManager.cs
index 7142c8c352..8195f33663 100644
--- a/OpenSim/Region/ScriptEngine/XEngine/EventManager.cs
+++ b/OpenSim/Region/ScriptEngine/XEngine/EventManager.cs
@@ -70,6 +70,13 @@ namespace OpenSim.Region.ScriptEngine.XEngine
}
}
+ ///
+ /// When an object gets paid by an avatar and generates the paid event,
+ /// this will pipe it to the script engine
+ ///
+ /// Object ID that got paid
+ /// Agent Id that did the paying
+ /// Amount paid
private void HandleObjectPaid(UUID objectID, UUID agentID,
int amount)
{
@@ -93,6 +100,15 @@ namespace OpenSim.Region.ScriptEngine.XEngine
}
}
+ ///
+ /// Handles piping the proper stuff to The script engine for touching
+ /// Including DetectedParams
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
public void touch_start(uint localID, uint originalID, Vector3 offsetPos,
IClientAPI remoteClient, SurfaceTouchEventArgs surfaceArgs)
{