summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorBrett Weiland <brett_weiland@gmail.com>2024-05-09 01:27:55 -0500
committerBrett Weiland <brett_weiland@gmail.com>2024-05-09 01:27:55 -0500
commit51a8923eb33ad53a36271b1e0b3489d033178337 (patch)
tree6c2017a8210f43848e338e6065e0964ee20cf115 /main.c
parent882999e591ece292d5ddbc87020ba70b3d2d1658 (diff)
will push to unison
Diffstat (limited to 'main.c')
-rw-r--r--main.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/main.c b/main.c
deleted file mode 100644
index b5dda5c..0000000
--- a/main.c
+++ /dev/null
@@ -1,23 +0,0 @@
-#include <stdio.h>
-#include "raylib.h"
-
-int main() {
- const int size_x = 1920;
- const int size_y = 1080;
- Image image = GenImageColor(size_x, size_y, BLUE);
-
- InitWindow(size_x, size_y, "cuda teseteroni");
-
-
-
-
- if(!IsWindowFullscreen()) ToggleFullscreen();
-
- while(!WindowShouldClose()) {
- BeginDrawing();
- DrawTexture(LoadTextureFromImage(image), 0, 0, WHITE);
- EndDrawing();
- }
-
- return 0;
-}