Add build script and raylib starter main.

Signed-off-by: jmug <u.g.a.mariano@gmail.com>
This commit is contained in:
Mariano Uvalle 2025-04-19 19:35:37 -07:00
parent 13d0df1c00
commit 262dded71f
2 changed files with 28 additions and 0 deletions

18
main.c Normal file
View file

@ -0,0 +1,18 @@
#include "raylib.h"
int main(void)
{
InitWindow(600, 400, "raylib [core] example - basic window");
while (!WindowShouldClose())
{
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY);
EndDrawing();
}
CloseWindow();
return 0;
}