コード例 #1
0
 static void Main(string[] args)
 {
     Manager m = new Manager();
 }
コード例 #2
0
        public Start(Manager m)
        {
            theManager = m;

            theManager.collection.DisableTickEvent();
        }
コード例 #3
0
 public Game(Manager m)
 {
     theManager = m;
     theManager.collection.EnableTickEvent();
     theManager.collection.EnableKeyboardEvent();
 }