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 virtual void forEachKeyWithPrefix(
25 ::std::string_view,
26 ::DBHelpers::Category,
27 ::std::function<void(::std::string_view, ::std::string_view)> const&
28 ) const /*override*/;
29
30 virtual ~TestStructureMockLevelStorage() /*override*/ = default;
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36
37 // NOLINTEND
38};
Definition MockLevelStorage.h:25
Definition TestStructureMockLevelStorage.h:11