LeviLamina
Loading...
Searching...
No Matches
MobSpawnHerdInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct MobSpawnHerdInfo {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<4, 4, uint> mMinCount;
10 ::ll::TypedStorage<4, 4, uint> mMaxCount;
11 ::ll::TypedStorage<4, 4, uint> mHerdEventSkipCount;
12 ::ll::TypedStorage<4, 4, uint> mInitialEventCount;
13 ::ll::TypedStorage<8, 32, ::std::string> mInitialEvent;
14 ::ll::TypedStorage<8, 32, ::std::string> mHerdEvent;
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 MobSpawnHerdInfo& operator=(MobSpawnHerdInfo const&);
20 MobSpawnHerdInfo();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI MobSpawnHerdInfo(::MobSpawnHerdInfo const&);
26
27 MCAPI MobSpawnHerdInfo(uint min, uint max, ::std::string const& herdEvent, uint herdEventSkipCount);
28
29 MCAPI MobSpawnHerdInfo(
30 uint min,
31 uint max,
32 ::std::string const& initialEvent,
33 uint initialEventCount,
34 ::std::string const& herdEvent,
35 uint herdEventSkipCount
36 );
37
38 MCAPI ~MobSpawnHerdInfo();
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCFOLD void* $ctor(::MobSpawnHerdInfo const&);
45
46 MCAPI void* $ctor(uint min, uint max, ::std::string const& herdEvent, uint herdEventSkipCount);
47
48 MCAPI void* $ctor(
49 uint min,
50 uint max,
51 ::std::string const& initialEvent,
52 uint initialEventCount,
53 ::std::string const& herdEvent,
54 uint herdEventSkipCount
55 );
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61 MCFOLD void $dtor();
62 // NOLINTEND
63};