static void Main(string[] args)
 {
     Manager m = new Manager();
 }
        public Start(Manager m)
        {
            theManager = m;

            theManager.collection.DisableTickEvent();
        }
 public Game(Manager m)
 {
     theManager = m;
     theManager.collection.EnableTickEvent();
     theManager.collection.EnableKeyboardEvent();
 }