diff options
Diffstat (limited to 'src/entityGrouping.h')
-rw-r--r-- | src/entityGrouping.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/entityGrouping.h b/src/entityGrouping.h new file mode 100644 index 0000000..0ab25e8 --- /dev/null +++ b/src/entityGrouping.h @@ -0,0 +1,11 @@ +#include "gameCommon.h" +#include "entity.h" +#include <raylib.h> + +#ifndef ENTITY_GROUPING_H +#define ENTITY_GROUPING_H + +void addEntityGroupToWorld(Game * game, EntityId id, int groupSize, Vector3 position, Vector3 spacing); +void addSoldatoGroupWithLeader(Game * game, EntityId leader, int groupSize, Vector3 position, Vector3 spacing); + +#endif |