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& operator=(MobEvent const&);
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCAPI MobEvent(::MobEvent const&);
23
24 MCAPI MobEvent(::std::string name, ::std::string localizableName, bool val);
25
26 MCAPI ~MobEvent();
27 // NOLINTEND
28
29public:
30 // constructor thunks
31 // NOLINTBEGIN
32 MCAPI void* $ctor(::MobEvent const&);
33
34 MCAPI void* $ctor(::std::string name, ::std::string localizableName, bool val);
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40 MCFOLD void $dtor();
41 // NOLINTEND
42};
Definition MobEvent.h:5