-
Notifications
You must be signed in to change notification settings - Fork 14
/
Event.cs
49 lines (42 loc) · 1.04 KB
/
Event.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using System.Text;
using LavishVMAPI;
using InnerSpaceAPI;
using LavishScriptAPI;
namespace EVE.ISXEVE
{
/// <summary>
/// The Event class.
/// </summary>
public class Event
{
#region .Net Events
//public event System.EventHandler<LSEventArgs> EVEEvent;
#endregion
#region .Net Event Raisers
/*
protected virtual void EVE_EVEEvent(object Sender, LSEventArgs e)
{
System.EventHandler<LSEventArgs> temp = ReceivedNotice;
if (temp != null)
temp(Sender, e);
}
*/
#endregion
/// <summary>
/// Event destructor.
/// </summary>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1821:RemoveEmptyFinalizers")]
~Event()
{
//LavishScript.Events.DetachEventTarget(LavishScript.Events.RegisterEvent("EVE_EVEEvent"), EVE_Event);
}
/// <summary>
/// Event constructor.
/// </summary>
public Event()
{
//LavishScript.Events.AttachEventTarget(LavishScript.Events.RegisterEvent("EVE_EVEEvent"), IRC_ReceivedNotice);
}
}
}