LeviLamina
Loading...
Searching...
No Matches
MobEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class MobEvent {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 32, ::std::string> mName;
10 ::ll::TypedStorage<8, 32, ::std::string> mLocalizableName;
11 ::ll::TypedStorage<1, 1, bool> mEnabled;
12 ::ll::TypedStorage<1, 1, bool> mIsDefaultSet;
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 MobEvent();
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCAPI MobEvent(::std::string name, ::std::string localizableName, bool val);
23 // NOLINTEND
24
25public:
26 // constructor thunks
27 // NOLINTBEGIN
28 MCAPI void* $ctor(::std::string name, ::std::string localizableName, bool val);
29 // NOLINTEND
30};