aboutsummaryrefslogtreecommitdiff
path: root/src/entities/soldato.h
diff options
context:
space:
mode:
authornathansmithsmith <nathansmith7@mailfence.com>2023-07-30 23:51:37 -0600
committernathansmithsmith <nathansmith7@mailfence.com>2023-07-30 23:51:37 -0600
commitfc6e0037a2f0769fdbd4c18bd96f49d55f630757 (patch)
tree79f6561d192c3e6e5887422c6b31beac35eab046 /src/entities/soldato.h
parentf6dc479873edc98704dcf1ffb116ba5da03805b2 (diff)
Started caporale circling thingy
Diffstat (limited to 'src/entities/soldato.h')
-rw-r--r--src/entities/soldato.h5
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);