From 8bd37d4fe75a43deab8d6f24b481c23d7f965c5a Mon Sep 17 00:00:00 2001 From: nathansmithsmith Date: Sun, 3 Dec 2023 01:09:04 -0700 Subject: More and more level stuff --- src/entityGrouping.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/entityGrouping.h (limited to 'src/entityGrouping.h') 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 + +#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 -- cgit v1.2.3