Exemple #1
0
        public BaseSystem()
        {
            _instance = this;

            _statisticsSystem = new StatisticsSystem();
            _applicationSystem = new ApplicationSystem();
            _eventSystem = new EventSystem();
            _eventTracker = new EventTracker();
            _database = new Database();
        }
Exemple #2
0
 public EventSystem()
 {
     _instance = this;
     _eventEditors = new Dictionary<Thread, EventEntry>();
     _events = new BindingList<EventEntry>();
 }