Example #1
0
 public void RemoveChangedStatusFunction(eventWrapper eventFunc)
 {
     changedStatusFuncs.Remove(eventFunc);
 }
Example #2
0
 /// <summary>
 /// Adds a function that should be called on an event
 /// </summary>
 /// <param name="EventFunction">Gives the new status, return whatever you want</param>
 public void AddChangedStatusFunction(eventWrapper eventFunc)
 {
     changedStatusFuncs.Add(eventFunc);
 }