LeviLamina
Loading...
Searching...
No Matches
MobSpawnHerdInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI MobSpawnHerdInfo(
26 uint min,
27 uint max,
28 ::std::string const& initialEvent,
29 uint initialEventCount,
30 ::std::string const& herdEvent,
31 uint herdEventSkipCount
32 );
33
34 MCFOLD ::MobSpawnHerdInfo& operator=(::MobSpawnHerdInfo const&);
35
36 MCAPI ~MobSpawnHerdInfo();
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCAPI void* $ctor(
43 uint min,
44 uint max,
45 ::std::string const& initialEvent,
46 uint initialEventCount,
47 ::std::string const& herdEvent,
48 uint herdEventSkipCount
49 );
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55 MCFOLD void $dtor();
56 // NOLINTEND
57};
Definition MobSpawnHerdInfo.h:5
Definition Alias.h:14