123456789101112131415161718192021222324252627282930 |
- using Android.App;
- using Android.Content.PM;
- using Android.OS;
- using Microsoft.Xna.Framework;
- namespace Flood_Control
- {
- [Activity(
- Label = "@string/app_name",
- MainLauncher = true,
- AlwaysRetainTaskState = true,
- LaunchMode = LaunchMode.SingleInstance,
- ScreenOrientation = ScreenOrientation.SensorLandscape,
- ConfigurationChanges = ConfigChanges.Orientation | ConfigChanges.Keyboard | ConfigChanges.KeyboardHidden | ConfigChanges.ScreenSize
- )]
- public class MainActivity : AndroidGameActivity
- {
- private Game1 _game;
- protected override void OnCreate(Bundle bundle)
- {
- base.OnCreate(bundle);
- _game = new Game1();
- SetContentView((View)_game.Services.GetService(typeof(View)));
- _game.Run();
- }
- }
- }
|