public void RemoveChangedStatusFunction(eventWrapper eventFunc) { changedStatusFuncs.Remove(eventFunc); }
/// <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); }