Luento06
|
00001 using System; 00002 00003 static class Ohjelma 00004 { 00005 #if WINDOWS || XBOX 00006 static void Main(string[] args) 00007 { 00008 using (Lumiukko game = new Lumiukko()) 00009 { 00010 #if !DEBUG 00011 game.IsFullScreen = true; 00012 #endif 00013 game.Run(); 00014 } 00015 } 00016 #endif 00017 }