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