LeviLamina
Loading...
Searching...
No Matches
ComponentStorage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/brstd/flat_map.h"
7
8namespace cereal {
9
10class ComponentStorage {
11public:
12 // member variables
13 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 ComponentStorage& operator=(ComponentStorage const&);
20 ComponentStorage(ComponentStorage const&);
21 ComponentStorage();
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCNAPI ::entt::meta_any getComponent(::std::string_view name);
27
28 MCNAPI bool hasComponent(::std::string_view name) const;
29
30 MCNAPI ::cereal::ComponentStorage& operator=(::cereal::ComponentStorage&&);
31
32 MCNAPI bool operator==(::cereal::ComponentStorage const& other) const;
33
34 MCNAPI bool removeComponent(::std::string_view name);
35 // NOLINTEND
36};
37
38} // namespace cereal
Definition ComponentStorage.h:10
MCAPI::cereal::ComponentStorage & operator=(::cereal::ComponentStorage &&)
MCAPI bool hasComponent(::std::string_view name) const
MCAPI bool removeComponent(::std::string_view name)
MCAPI::entt::meta_any getComponent(::std::string_view name)
MCAPI bool operator==(::cereal::ComponentStorage const &other) const
Definition Alias.h:14