예제 #1
0
파일: MainActivity.cs 프로젝트: Acivev/osu
        protected override void OnCreate(Bundle savedInstanceState)
        {
            base.OnCreate(savedInstanceState);
            Window.RequestFeature(WindowFeatures.NoTitle);
            Window.AddFlags(WindowManagerFlags.KeepScreenOn | WindowManagerFlags.Fullscreen);

            gameView = new AndroidPlatformGameView(ApplicationContext);
            SetContentView(gameView);
        }
예제 #2
0
 public AndroidTouchHandler(AndroidPlatformGameView gameView)
 {
     gameView.Touch += handleTouches;
 }