public static void Subscribe(Event e, onEventDelegate d) { EventBulletin eb = GetInstance(); lock (eb) { eb.phoneBook[(int)e].Add(d); } }
public static EventBulletin GetInstance() { if (instance == null) { instance = new EventBulletin(); } return(instance); }