LeviLamina
Loading...
Searching...
No Matches
LevelCache.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class LevelCache {
6public:
7 // member variables
8 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 LevelCache& operator=(LevelCache const&);
19 LevelCache(LevelCache const&);
20 LevelCache();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCNAPI ::LevelCache& moveAssignKeepLevelDataMemory(::LevelCache&& other);
26
27 MCNAPI ~LevelCache();
28 // NOLINTEND
29
30public:
31 // destructor thunk
32 // NOLINTBEGIN
33 MCNAPI void $dtor();
34 // NOLINTEND
35};
MCAPI ~LevelCache()
MCAPI void $dtor()
MCAPI::LevelCache & moveAssignKeepLevelDataMemory(::LevelCache &&other)
Definition Alias.h:14