* Optimized usings

* Shortened type references
* Removed redundant 'this' qualifier
This commit is contained in:
lbsa71
2007-10-30 09:05:31 +00:00
parent c32d1f0562
commit 67e12b95ea
353 changed files with 15459 additions and 10338 deletions

View File

@@ -26,19 +26,14 @@
*
*/
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Region.Environment.Scenes;
using libsecondlife;
using Key = libsecondlife.LLUUID;
namespace OpenSim.Region.ExtensionsScriptModule
{
public class ScriptInterpretedEvents
{
public delegate void OnTouchStartDelegate(Key user);
public event OnTouchStartDelegate OnTouchStart;
@@ -48,4 +43,4 @@ namespace OpenSim.Region.ExtensionsScriptModule
OnTouchStart(user);
}
}
}
}