LeviLamina
Loading...
Searching...
No Matches
WorldCache.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Realms { struct World; }
8// clang-format on
9
10namespace Realms {
11
12class WorldCache : public ::std::enable_shared_from_this<::Realms::WorldCache> {
13public:
14 // member variables
15 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 WorldCache& operator=(WorldCache const&);
27 WorldCache(WorldCache const&);
28 WorldCache();
29};
30
31} // namespace Realms
Definition WorldCache.h:12
Definition Alias.h:14