diff options
author | BoredGuy <osome3717@gmail.com> | 2025-07-28 05:14:54 -0700 |
---|---|---|
committer | BoredGuy <osome3717@gmail.com> | 2025-07-28 05:14:54 -0700 |
commit | 9e1627c229d8d094c7b55751d82db9d3579a16e1 (patch) | |
tree | b8623b5980e090b3faa91e55ed6f84cd1634b570 /src/main.c | |
parent | dc3d98ab47fefc8388455dbbd4d330e81499d95a (diff) |
Completed Basics
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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()); |