using System.Collections.Generic; public class SFSEventManager { public GardenSmartFox GardenSmartFox; public EventDispatcher EventDispatcher; public PlazaRoomEvent PlazaRoomEvent; public SFSEventManager(GardenSmartFox smartFox) { GardenSmartFox = smartFox; EventDispatcher = new EventDispatcher(this); PlazaRoomEvent = new PlazaRoomEvent(this); } }