diff options
author | BoredGuy <osome3717@gmail.com> | 2025-08-26 19:54:09 +0300 |
---|---|---|
committer | BoredGuy <osome3717@gmail.com> | 2025-08-26 19:54:09 +0300 |
commit | f95068d73410aa6d01e8ba91b430ca05d404a57b (patch) | |
tree | 84de322f972182510e48aaa374ae8a62ac3ee2b5 /src/main.c | |
parent | 87d07175058ee4ae18fce608de81c68d7d9bb178 (diff) |
Added barrel, next up sprite Z-sorting(ugh)
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -4,6 +4,7 @@ #include "game.h" #include "background.h" #include "player.h" +#include "barrel.h" int main() { InitWindow(WINDOW_WIDTH, WINDOW_HEIGHT, "My BeatEmup"); @@ -15,6 +16,7 @@ int main() { AddBackground("bar-background"); AddPlayer(0, 400); AddWall(0, 160, 1000000, 100); + AddBarrel(200, 400); while(!WindowShouldClose()) { UpdateGame(GetFrameTime()); |