diff options
author | nathansmithsmith <nathansmith7@mailfence.com> | 2023-08-18 00:38:54 -0600 |
---|---|---|
committer | nathansmithsmith <nathansmith7@mailfence.com> | 2023-08-18 00:38:54 -0600 |
commit | 97c711ab6b6823d09893582281203dcade1cfe9a (patch) | |
tree | e4aa0dbe639592834b5c8d7faf196a5c8caa2c43 /src/entities/caporale.h | |
parent | f98e6d4ea4ee52b298a7d9a9731da4c020bb4dfe (diff) |
Using random thingy instead
Diffstat (limited to 'src/entities/caporale.h')
-rw-r--r-- | src/entities/caporale.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/entities/caporale.h b/src/entities/caporale.h index 3999436..effba16 100644 --- a/src/entities/caporale.h +++ b/src/entities/caporale.h @@ -8,22 +8,11 @@ #define CAPORALE_COOLDOWN 0.5 #define CAPORALE_BULLET_DAMAGE 0.01 -#define CAPORALE_TARGET_POINTER_DIS 10.0 +#define CAPORALE_CHANGE_OF_HIT 10 typedef struct Caporale { EntityFlyToPointInfo flyToPlayer; double timeSinceLastShot; - - bool initTarget; - Vector3 targetSetpoint; - Vector3 target; - Vector3 targetVelocity; - - PID aimXPID; - PID aimYPID; - PID aimZPID; - - Ray ray; } Caporale; void initCaporale(Entity * entity, Game * game); |