mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-09 02:07:04 +08:00
11 lines
180 B
C++
11 lines
180 B
C++
#pragma once
|
|
#include <cstdint>
|
|
namespace Cubed {
|
|
using EntityID = uint64_t;
|
|
|
|
struct Entity {
|
|
EntityID id;
|
|
explicit Entity(EntityID id) : id(id) {}
|
|
};
|
|
|
|
} // namespace Cubed
|