LeviLamina
Loading...
Searching...
No Matches
MobSpawnHerdInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
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
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI MobSpawnHerdInfo(
25 uint min,
26 uint max,
27 ::std::string const& initialEvent,
28 uint initialEventCount,
29 ::std::string const& herdEvent,
30 uint herdEventSkipCount
31 );
32
33 MCAPI ~MobSpawnHerdInfo();
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor(
40 uint min,
41 uint max,
42 ::std::string const& initialEvent,
43 uint initialEventCount,
44 ::std::string const& herdEvent,
45 uint herdEventSkipCount
46 );
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCFOLD void $dtor();
53 // NOLINTEND
54};
Definition MobSpawnHerdInfo.h:5