Beispiel #1
0
        public IWindow CreateWindow(int width, int height, bool fullScreen)
        {
            Window window = new Window(SdlDotNet.Graphics.Video.SetVideoMode(width, height, 32, false, false, fullScreen));
            window.Title = "[CrossGFX] SDL_App";

            mainWindow = window;

            return window;
        }
Beispiel #2
0
 public InputHelper(Window window)
 {
     this.window = window;
 }