LeviLamina
Loading...
Searching...
No Matches
EquipmentTable.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class CompoundTag;
9// clang-format on
10
11struct EquipmentTable {
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<8, 32, ::std::string> mLootTableFilePath;
16 ::ll::TypedStorage<8, 24, ::std::vector<::EquipmentTableDropChance>> mDropChancesPerSlot;
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 EquipmentTable& operator=(EquipmentTable const&);
22 EquipmentTable();
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCAPI EquipmentTable(::EquipmentTable const&);
28
29 MCAPI void addAdditionalSaveData(::CompoundTag& tag) const;
30
31 MCFOLD ::EquipmentTable& operator=(::EquipmentTable&&);
32
33 MCAPI void readAdditionalSaveData(::CompoundTag const& tag);
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCFOLD void* $ctor(::EquipmentTable const&);
40 // NOLINTEND
41};
Definition CompoundTag.h:18
Definition EquipmentTableDropChance.h:8