first commit

This commit is contained in:
2025-11-26 01:49:47 -05:00
commit ebbddb7321
16 changed files with 716 additions and 0 deletions

15
dasher.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include <raylib.h>
int main() {
InitWindow(800, 600, "Dasher Example");
SetTargetFPS(60);
while (!WindowShouldClose())
{
BeginDrawing();
ClearBackground(RAYWHITE);
EndDrawing();
}
}