18 lines
321 B
C
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; |