LeviLamina
Loading...
Searching...
No Matches
SpawnGroupData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class MobSpawnRules;
8// clang-format on
9
10class SpawnGroupData {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 32, ::std::string> mIdentifier;
15 ::ll::TypedStorage<8, 24, ::std::vector<::MobSpawnRules>> mSpawnRules;
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 SpawnGroupData();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI SpawnGroupData(::std::string const& identifier, ::MobSpawnRules& spawnRules);
26
27 MCAPI void addSpawnRules(::MobSpawnRules& spawnRules);
28
29 MCFOLD ::std::string const& getIdentifier() const;
30
31 MCFOLD ::std::vector<::MobSpawnRules> const& getSpawnRules() const;
32
33 MCAPI ~SpawnGroupData();
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor(::std::string const& identifier, ::MobSpawnRules& spawnRules);
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45 MCAPI void $dtor();
46 // NOLINTEND
47};
Definition MobSpawnRules.h:21