LeviLamina
Loading...
Searching...
No Matches
TestStructureMockLevelStorage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/BlockPos.h"
7#include "mc/world/level/levelgen/structure/StructureSettings.h"
8#include "mc/world/level/storage/MockLevelStorage.h"
9#include "mc/world/level/storage/db_helpers/Category.h"
10
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<8, 32, ::std::string const> mStructureSaveId;
16 ::ll::TypedStorage<8, 104, ::StructureSettings const> mStructureSettings;
17 ::ll::TypedStorage<8, 32, ::std::string const> mStructureName;
18 ::ll::TypedStorage<4, 12, ::BlockPos const> mPosition;
19 // NOLINTEND
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 // vIndex: 5
25 virtual void forEachKeyWithPrefix(
26 ::std::string_view,
27 ::DBHelpers::Category,
28 ::std::function<void(::std::string_view, ::std::string_view)> const&
29 ) const /*override*/;
30
31 // vIndex: 0
32 virtual ~TestStructureMockLevelStorage() /*override*/ = default;
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38
39 // NOLINTEND
40};
Definition MockLevelStorage.h:25
Definition TestStructureMockLevelStorage.h:11