tomato/src/fragment_store/fragment_store_i.hpp

16 lines
306 B
C++
Raw Normal View History

2024-02-13 00:15:18 +01:00
#pragma once
#include <entt/entity/registry.hpp>
2024-02-13 00:15:18 +01:00
#include <cstdint>
// internal id
enum class FragmentID : uint32_t {};
using FragmentRegistry = entt::basic_registry<FragmentID>;
using FragmentHandle = entt::basic_handle<FragmentRegistry>;
2024-02-13 00:15:18 +01:00
struct FragmentStoreI {
virtual ~FragmentStoreI(void) {}
};