Files
game-engine/src/game/ecs/entity/utility/entity_counter.h
2024-04-11 01:05:03 -04:00

12 lines
293 B
C

#pragma once
#include "../../component/utility/component_counter.h"
#define ENTITY_COUNTER_DEPENDENCY_COUNT 1
static const ECSComponentType ENTITY_COUNTER_DEPENDENCIES[ENTITY_COUNTER_DEPENDENCY_COUNT] =
{
ECS_COMPONENT_COUNTER
};
EntityID entity_counter_add(ECS* ecs, s32 value, s32 max);