base raylib window
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
#include "raylib.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
InitWindow(800, 600, "Super cool game");
|
||||
SetTargetFPS(60);
|
||||
|
||||
while (!WindowShouldClose()) {
|
||||
BeginDrawing();
|
||||
ClearBackground(RED);
|
||||
EndDrawing();
|
||||
}
|
||||
|
||||
CloseWindow();
|
||||
}
|
||||
Reference in New Issue
Block a user