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