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(
28 uint min,
29 uint max,
30 ::std::string const& initialEvent,
31 uint initialEventCount,
32 ::std::string const& herdEvent,
33 uint herdEventSkipCount
34 );
35
36 MCAPI ~MobSpawnHerdInfo();
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCFOLD void* $ctor(::MobSpawnHerdInfo const&);
43
44 MCAPI void* $ctor(
45 uint min,
46 uint max,
47 ::std::string const& initialEvent,
48 uint initialEventCount,
49 ::std::string const& herdEvent,
50 uint herdEventSkipCount
51 );
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCFOLD void $dtor();
58 // NOLINTEND
59};