sandbox
Loading...
Searching...
No Matches
node.hpp
1// SPDX-License-Identifier: MIT
2#ifndef LIBSBX_SCENES_NODE_HPP_
3#define LIBSBX_SCENES_NODE_HPP_
4
5#include <unordered_set>
6
7#include <libsbx/ecs/registry.hpp>
8#include <libsbx/ecs/entity.hpp>
9
10namespace sbx::scenes {
11
12enum class node : std::uint32_t {
13 null = ecs::null_entity
14}; // enum class node
15
16} // namespace sbx::scenes
17
18#endif // LIBSBX_SCENES_NODE_HPP_
Definition: tests.cpp:6