first commit

This commit is contained in:
2024-04-11 01:05:03 -04:00
commit 3398c52f8b
272 changed files with 35195 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#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);