diff options
Diffstat (limited to 'src/entities/maresciallo.h')
-rw-r--r-- | src/entities/maresciallo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/entities/maresciallo.h b/src/entities/maresciallo.h index 2e50ffe..7624f8f 100644 --- a/src/entities/maresciallo.h +++ b/src/entities/maresciallo.h @@ -9,8 +9,12 @@ #define MARESCIALLO_ROTATION_SPEED 20.0 #define MARESCIALLO_CIRCLE_PLAYER_SPEED 1.0 +#define MARESCIALLO_COOLDOWN 1.0 +#define MARESCIALLO_BULLET_DAMAGE 0.01 + typedef struct Maresciallo { EntityFlyToPointInfo flyToPoint; + double timeSinceLastBulletShot; } Maresciallo; void initMaresciallo(Entity * entity, Game * game); |