| 12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Navigation;
- using Microsoft.Phone.Controls;
- using Microsoft.Phone.Shell;
- using Microsoft.Xna.Framework;
- using MonoGame.Framework.WindowsPhone;
- namespace Samples.Animation
- {
- public partial class GamePage : PhoneApplicationPage
- {
- private Game1 _game;
- // Constructor
- public GamePage()
- {
- InitializeComponent();
- _game = XamlGame<Game1>.Create("", this);
- }
- }
- }
|