From 280552fa4750b5dac9243782f9c0a7e0b7eea6f8 Mon Sep 17 00:00:00 2001 From: quou Date: Fri, 5 May 2023 09:25:39 +1000 Subject: Add a basic enemy. --- bullet.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'bullet.h') diff --git a/bullet.h b/bullet.h index cd7a436..2c84840 100644 --- a/bullet.h +++ b/bullet.h @@ -12,4 +12,12 @@ int new_player_bullet( int life ); +int new_enemy_bullet( + struct World* world, + int x, + int y, + int vx, + int vy +); + #endif -- cgit v1.2.3-54-g00ecf