12 lines
293 B
C
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);
|