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/caporale.h | |
parent | f6dc479873edc98704dcf1ffb116ba5da03805b2 (diff) |
Started caporale circling thingy
Diffstat (limited to 'src/entities/caporale.h')
-rw-r--r-- | src/entities/caporale.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/entities/caporale.h b/src/entities/caporale.h index 13f86d1..e855b30 100644 --- a/src/entities/caporale.h +++ b/src/entities/caporale.h @@ -4,6 +4,10 @@ #ifndef CAPORALE_H #define CAPORALE_H +typedef struct Caporale { + EntityFlyToPointInfo flyToPlayer; +} Caporale; + void initCaporale(Entity * entity, Game * game); void closeCaporale(Entity * entity); void updateCaporale(Game * game, Entity * entity); |