#include int main (int count, char ** arguments) { /* :config */ int horizontal = 1920, vertical = 1080; /* this idented (DENTED) style is autistic and dumb but I like it visually */ { SetConfigFlags(FLAG_WINDOW_RESIZABLE); /* tell raylib to shut up */ /* SetTraceLogLevel(LOG_NONE); */ InitWindow(horizontal, vertical, arguments[0]); SetWindowState(FLAG_WINDOW_HIDDEN); InitAudioDevice(); SetWindowPosition(0, 0); } /* loop to end all loops */ { } stop: SetWindowState(FLAG_WINDOW_HIDDEN); CloseAudioDevice(); CloseWindow(); return 0; }