base raylib window

This commit is contained in:
speckitor
2026-07-03 23:36:51 +07:00
parent e8fca973ee
commit a326793863
3 changed files with 22 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#include "raylib.h"
int main()
{
InitWindow(800, 600, "Super cool game");
SetTargetFPS(60);
while (!WindowShouldClose()) {
BeginDrawing();
ClearBackground(RED);
EndDrawing();
}
CloseWindow();
}