Files
Martin Slachta a04f0dc262 initial
2026-07-18 14:31:15 +02:00

14 lines
196 B
C++

#ifndef ENTT_COMMON_ENTITY_H
#define ENTT_COMMON_ENTITY_H
#include <cstdint>
namespace test {
enum entity : std::uint32_t {};
enum other_entity : std::uint32_t {};
} // namespace test
#endif