LeviLamina
Loading...
Searching...
No Matches
Herd.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace SharedTypes::Legacy::Spawn {
6
7struct Herd {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<4, 4, int> mMin;
12 ::ll::TypedStorage<4, 4, int> mMax;
13 ::ll::TypedStorage<4, 4, int> mInitEventCount;
14 ::ll::TypedStorage<4, 4, int> mEventSkipCount;
15 ::ll::TypedStorage<8, 32, ::std::string> mInitialEvent;
16 ::ll::TypedStorage<8, 32, ::std::string> mEvent;
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 Herd& operator=(Herd const&);
22 Herd();
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCAPI Herd(::SharedTypes::Legacy::Spawn::Herd const&);
28
29 MCFOLD ::SharedTypes::Legacy::Spawn::Herd& operator=(::SharedTypes::Legacy::Spawn::Herd&&);
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCFOLD void* $ctor(::SharedTypes::Legacy::Spawn::Herd const&);
36 // NOLINTEND
37};
38
39} // namespace SharedTypes::Legacy::Spawn