static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Model m = new Model(); Controller c = new Controller(m); View aGame = new View(c); m.AddObserver(aGame); Application.Run(aGame); }