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