public MainPage()
        {
            InitializeComponent();

            pointerInputGame = new PointerInputGame();
            pointerInputGame.Run(DrawingSurface);
        }
Example #2
0
        public MainPage()
        {
            InitializeComponent();

            pointerInputGame = new PointerInputGame();
            pointerInputGame.Run(DrawingSurface);
        }
Example #3
0
 static void Main()
 {
     using (var game = new PointerInputGame())
         game.Run();
 }
Example #4
0
 public static void Main()
 {
     using (var game = new PointerInputGame())
         game.Run();
 }