mirror of
https://github.com/opensim/opensim.git
synced 2026-05-17 12:15:33 +08:00
fixing me some line endings
This commit is contained in:
@@ -1,23 +1,23 @@
|
||||
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;
|
||||
|
||||
|
||||
public void TriggerTouchStart(Key user)
|
||||
{
|
||||
if (OnTouchStart != null)
|
||||
OnTouchStart(user);
|
||||
}
|
||||
}
|
||||
}
|
||||
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;
|
||||
|
||||
|
||||
public void TriggerTouchStart(Key user)
|
||||
{
|
||||
if (OnTouchStart != null)
|
||||
OnTouchStart(user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user