summaryrefslogtreecommitdiff
path: root/space_game.c
diff options
context:
space:
mode:
Diffstat (limited to 'space_game.c')
-rw-r--r--space_game.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/space_game.c b/space_game.c
deleted file mode 100644
index bbe51cd..0000000
--- a/space_game.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <raylib.h>
-
-#define SCREEN_WIDTH 800
-#define SCREEN_HEIGHT 600
-
-int main()
-{
- InitWindow(SCREEN_WIDTH, SCREEN_HEIGHT, "SPACE INVADERS");
- SetTargetFPS(60);
-
- while(!WindowShouldClose())
- {
- BeginDrawing();
- ClearBackground(BLACK);
-
- EndDrawing();
- }
-
- CloseWindow();
- return 0;
-}