summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorBoredGuy <osome3717@gmail.com>2025-07-28 05:14:54 -0700
committerBoredGuy <osome3717@gmail.com>2025-07-28 05:14:54 -0700
commit9e1627c229d8d094c7b55751d82db9d3579a16e1 (patch)
treeb8623b5980e090b3faa91e55ed6f84cd1634b570 /src/main.c
parentdc3d98ab47fefc8388455dbbd4d330e81499d95a (diff)
Completed Basics
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index f01f61c..1bfbb61 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2,6 +2,7 @@
#include <raylib.h>
#include "constants.h"
#include "game.h"
+#include "player.h"
int main() {
SetConfigFlags(FLAG_VSYNC_HINT); //Always better than fixed FPS imo
@@ -9,6 +10,8 @@ int main() {
SetTargetFPS(0);
InitGame();
+ AddPlayer(0.0, 0.0);
+ AddWall(200, 100, 10000, 100);
while(!WindowShouldClose()) {
UpdateGame(GetFrameTime());