Files
dusk/archive/dusk/ecs/ecsentity.h

18 lines
321 B
C

/**
* Copyright (c) 2025 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "ecs.h"
#define ECS_ENTITY_FLAG_USED (1 << 0)
#define ECS_ENTITY_COUNT_MAX 2048
typedef struct ecsentity_s {
ecsid_t id;
uint8_t flags;
} ecsentity_t;