From 51a8923eb33ad53a36271b1e0b3489d033178337 Mon Sep 17 00:00:00 2001 From: Brett Weiland Date: Thu, 9 May 2024 01:27:55 -0500 Subject: will push to unison --- main.c | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 main.c (limited to 'main.c') 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 -#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; -} -- cgit v1.2.3