21 lines
398 B
C++
21 lines
398 B
C++
#pragma once
|
|
#include <src/Vendors/entt/entt.hpp>
|
|
|
|
class SceneArchive {
|
|
private:
|
|
|
|
public:
|
|
void operator()(entt::entity);
|
|
|
|
void operator()(std::underlying_type_t<entt::entity>);
|
|
|
|
template<typename T>
|
|
void operator()(entt::entity, const T&);
|
|
|
|
void operator()(entt::entity&);
|
|
|
|
void operator()(std::underlying_type_t<entt::entity>&);
|
|
|
|
template<typename T>
|
|
void operator()(entt::entity&, T&);
|
|
}; |