sandbox
Loading...
Searching...
No Matches
id.hpp
1// SPDX-License-Identifier: MIT
2#ifndef LIBSBX_SCENES_COMPONENTS_ID_HPP_
3#define LIBSBX_SCENES_COMPONENTS_ID_HPP_
4
5#include <libsbx/math/uuid.hpp>
6
7namespace sbx::scenes {
8
9class id final : public math::uuid {
10
11 using base = math::uuid;
12
13public:
14
15 id()
16 : base{} { }
17
18 id(const base& other)
19 : base{other} { }
20
21}; // class id
22
23} // namespace sbx::scenes
24
25#endif // LIBSBX_SCENES_COMPONENTS_ID_HPP_
Definition: uuid.hpp:160
Definition: id.hpp:9