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
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 LevelCache& operator=(LevelCache const&);
18 LevelCache(LevelCache const&);
19 LevelCache();
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI ~LevelCache();
25 // NOLINTEND
26
27public:
28 // destructor thunk
29 // NOLINTBEGIN
30 MCAPI void $dtor();
31 // NOLINTEND
32};
Definition LevelCache.h:5
Definition Alias.h:14