LeviLamina
Loading...
Searching...
No Matches
DefinitionEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/DefinitionEventType.h"
7
8// auto generated forward declare list
9// clang-format off
11class ExpressionNode;
12class RenderParams;
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<4, 4, float> mProbability;
22 ::ll::TypedStorage<8, 216, ::ExpressionNode> mCondition;
23 ::ll::TypedStorage<4, 4, ::DefinitionEventType> mType;
24 ::ll::TypedStorage<8, 256, ::DefinitionTrigger> mTrigger;
25 ::ll::TypedStorage<8, 24, ::std::vector<::DefinitionEvent>> mChildren;
26 ::ll::TypedStorage<8, 24, ::EventResponseCollection> mResponses;
27 // NOLINTEND
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI DefinitionEvent();
33
35
37
38 MCAPI void evaluateEvent(::RenderParams& params, ::std::vector<::DefinitionModifier>& modifications) const;
39
40 MCAPI ::DefinitionEvent& operator=(::DefinitionEvent const&);
41
42 MCAPI ~DefinitionEvent();
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCAPI void* $ctor();
49
50 MCAPI void* $ctor(::DefinitionEvent const&);
51
52 MCAPI void* $ctor(::DefinitionEvent&&);
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58 MCAPI void $dtor();
59 // NOLINTEND
60};
Definition DefinitionEvent.h:17
Definition DefinitionTrigger.h:10
Definition ExpressionNode.h:31
Definition RenderParams.h:30
Definition DefinitionModifier.h:5
Definition EventResponseCollection.h:10