engine/include/entity.h

9 lines
81 B
C
Raw Permalink Normal View History

2024-06-04 18:01:49 +00:00
#pragma once
#include <cstdint>
namespace engine {
using Entity = uint32_t;
}