diff options
author | nathansmithsmith <nathansmith7@mailfence.com> | 2023-07-30 23:51:37 -0600 |
---|---|---|
committer | nathansmithsmith <nathansmith7@mailfence.com> | 2023-07-30 23:51:37 -0600 |
commit | fc6e0037a2f0769fdbd4c18bd96f49d55f630757 (patch) | |
tree | 79f6561d192c3e6e5887422c6b31beac35eab046 /src/entities/soldato.h | |
parent | f6dc479873edc98704dcf1ffb116ba5da03805b2 (diff) |
Started caporale circling thingy
Diffstat (limited to 'src/entities/soldato.h')
-rw-r--r-- | src/entities/soldato.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/entities/soldato.h b/src/entities/soldato.h index eb336db..f4228df 100644 --- a/src/entities/soldato.h +++ b/src/entities/soldato.h @@ -5,9 +5,14 @@ #ifndef SOLDATO_H #define SOLDATO_H +#define SOLDATO_COOLDOWN 1.0 +#define SOLDATO_AIM_RADIOUS 1.5 +#define SOLDATO_BULLET_DAMAGE 0.01 + typedef struct Soldato { EntityFlyToPointInfo flyToPointLeading; EntityFlyToPointInfo flyToPointFollowing; + double timeSinceLastShot; } Soldato; void initSoldato(Entity * entity, Game * game); |