light/modules/ecs/public/components/uuid.hpp

19 lines
209 B
C++
Raw Normal View History

2025-07-05 13:28:41 +03:30
#pragma once
2025-07-11 01:16:52 +03:30
#include <ecs/uuid.hpp>
2025-07-05 13:28:41 +03:30
2025-07-11 00:05:48 +03:30
namespace lt {
2025-07-05 13:28:41 +03:30
struct UUIDComponent
{
UUIDComponent(UUID _uuid): uuid(_uuid)
{
}
2025-07-05 16:07:51 +03:30
2025-07-05 13:28:41 +03:30
UUIDComponent(const UUIDComponent &) = default;
2025-07-05 16:07:51 +03:30
UUID uuid;
2025-07-05 13:28:41 +03:30
};
2025-07-11 00:05:48 +03:30
} // namespace lt