예제 #1
0
파일: Macro.cs 프로젝트: richardj97/Macro
 /// <summary>
 /// Appends an event to the end of this macro.
 /// </summary>
 /// <param name="newEvent">The event to append.</param>
 public void AddMouseEvent(MacroEvent newEvent)
 {
     events.Add(newEvent);
     OnMouseTrigger(newEvent);
 }
예제 #2
0
 /// <summary>
 /// Appends an event to the end of this macro.
 /// </summary>
 /// <param name="newEvent">The event to append.</param>
 public void AddEvent(MacroEvent newEvent)
 {
     events.Add(newEvent);
 }
예제 #3
0
파일: Macro.cs 프로젝트: richardj97/Macro
 /// <summary>
 /// Appends an event to the end of this macro.
 /// </summary>
 /// <param name="newEvent">The event to append.</param>
 public void AddKeyEvent(MacroEvent newEvent)
 {
     events.Add(newEvent);
     OnKeyTrigger(newEvent);
 }