Ejemplo n.º 1
0
 public static unsafe App *Create(Settings *settings, Config *config)
 => AppCore.CreateApp(settings, config);
Ejemplo n.º 2
0
 public static Overlay *Create(Window *window, uint width, uint height, int x, int y)
 => AppCore.CreateOverlay(window, width, height, x, y);
Ejemplo n.º 3
0
 public static Window *Create(Monitor *monitor, uint width, uint height, bool fullscreen, WindowFlags windowFlags)
 => AppCore.CreateWindow(monitor, width, height, fullscreen, windowFlags);
Ejemplo n.º 4
0
 public static Overlay *Create(Window *window, View *view, int x, int y)
 => AppCore.CreateOverlayWithView(window, view, x, y);
Ejemplo n.º 5
0
 public static unsafe Settings *Create()
 => AppCore.CreateSettings();