Пример #1
0
        static void Main(string[] args)
        {
            Mundo window = Mundo.GetInstance(600, 600);

            window.Title = "CG_N2";
            window.Run(1.0 / 60.0);
        }
Пример #2
0
 public static Mundo GetInstance(int width, int height)
 {
     if (instanciaMundo == null)
     {
         instanciaMundo = new Mundo(width, height);
     }
     return(instanciaMundo);
 }