summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index f5be59f..7032ca9 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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());