LeviLamina
Loading...
Searching...
No Matches
TrialSpawnerConfig.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class CompoundTag;
8class SpawnData;
10// clang-format on
11
12struct TrialSpawnerConfig {
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<4, 4, float> mTotalMobs;
17 ::ll::TypedStorage<4, 4, float> mSimultaneousMobs;
18 ::ll::TypedStorage<4, 4, float> mTotalMobsAddedPerPlayer;
19 ::ll::TypedStorage<4, 4, float> mSimultaneousMobsAddedPerPlayer;
20 ::ll::TypedStorage<8, 8, uint64> mTargetCooldownLength;
21 ::ll::TypedStorage<4, 4, int> mSpawnRange;
22 ::ll::TypedStorage<4, 4, int> mTicksBetweenSpawns;
23 ::ll::TypedStorage<8, 24, ::std::vector<::SpawnData>> mSpawnPotentials;
24 ::ll::TypedStorage<8, 24, ::std::vector<::TrialSpawnerWeightedLootTable>> mLootTables;
25 ::ll::TypedStorage<8, 32, ::std::string> mItemsToDropWhenOminous;
26 ::ll::TypedStorage<8, 32, ::std::string> mRegistryKey;
27 // NOLINTEND
28
29public:
30 // prevent constructor by default
31 TrialSpawnerConfig(TrialSpawnerConfig const&);
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI TrialSpawnerConfig();
37
38 MCAPI ::std::unique_ptr<::CompoundTag> asInlineConfig() const;
39
40 MCAPI void loadConfig(::CompoundTag const* data);
41
42 MCAPI ::TrialSpawnerConfig& operator=(::TrialSpawnerConfig const&);
43
44 MCAPI ~TrialSpawnerConfig();
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCAPI void* $ctor();
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56 MCAPI void $dtor();
57 // NOLINTEND
58};
Definition CompoundTag.h:18
Definition SpawnData.h:15
Definition TrialSpawnerWeightedLootTable.h:5