LeviLamina
Loading...
Searching...
No Matches
InsideBlockEventMap.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ActorDefinitionTrigger.h"
7
8// auto generated forward declare list
9// clang-format off
10class Block;
11// clang-format on
12
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 104, ::ActorDefinitionTrigger> mOnEnteredBlock;
18 ::ll::TypedStorage<8, 104, ::ActorDefinitionTrigger> mOnExitedBlock;
19 ::ll::TypedStorage<8, 8, ::gsl::not_null<::Block const*>> mBlock;
20 ::ll::TypedStorage<1, 1, bool> mWatchEnter;
21 ::ll::TypedStorage<1, 1, bool> mWatchExit;
22 ::ll::TypedStorage<1, 1, bool> mCurrentlyInside;
23 ::ll::TypedStorage<1, 1, bool> mWasInside;
24 ::ll::TypedStorage<1, 1, bool> mIgnoreStates;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
30
31public:
32 // member functions
33 // NOLINTBEGIN
35
37 ::Block const& block,
38 bool watchEnter,
39 bool watchExit,
40 bool ignoreStates,
41 ::ActorDefinitionTrigger const& enteredEvent,
42 ::ActorDefinitionTrigger const& exitedEvent
43 );
44
45 MCAPI ::InsideBlockEventMap& operator=(::InsideBlockEventMap const&);
46
48 // NOLINTEND
49
50public:
51 // constructor thunks
52 // NOLINTBEGIN
53 MCAPI void* $ctor(::InsideBlockEventMap const&);
54
55 MCAPI void* $ctor(
56 ::Block const& block,
57 bool watchEnter,
58 bool watchExit,
59 bool ignoreStates,
60 ::ActorDefinitionTrigger const& enteredEvent,
61 ::ActorDefinitionTrigger const& exitedEvent
62 );
63 // NOLINTEND
64
65public:
66 // destructor thunk
67 // NOLINTBEGIN
68 MCFOLD void $dtor();
69 // NOLINTEND
70};
Definition ActorDefinitionTrigger.h:5
Definition Block.h:37
Definition InsideBlockEventMap.h:13