feat: raylib setup

This commit is contained in:
2025-09-02 14:58:20 +02:00
parent cae1b7372c
commit b6b404576c
12 changed files with 12696 additions and 3 deletions

View File

@@ -1,6 +1,21 @@
#include <stdio.h>
#include <raylib.h>
#define WIDTH 800
#define HEIGHT 600
int main(void)
{
InitWindow(WIDTH, HEIGHT, "Wallpaper");
while (!WindowShouldClose())
{
BeginDrawing();
ClearBackground(RED);
EndDrawing();
}
int main(void) {
printf("Ok\n");
return 0;
}