LeviLamina
Loading...
Searching...
No Matches
MobEffectResponse.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/shared_types/legacy/FilterSubject.h"
7#include "mc/util/Factory.h"
8#include "mc/util/json_util/JsonSchemaObjectNode.h"
9#include "mc/world/effect/EffectDuration.h"
10#include "mc/world/response/EventResponse.h"
11
12// auto generated forward declare list
13// clang-format off
14class RenderParams;
16namespace JsonUtil { class EmptyClass; }
17// clang-format on
18
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 32, ::std::string> mEffect;
24 ::ll::TypedStorage<4, 4, ::EffectDuration> mDuration;
25 ::ll::TypedStorage<4, 4, int> mAmplifier;
26 ::ll::TypedStorage<2, 2, ::SharedTypes::Legacy::FilterSubject> mTarget;
27 // NOLINTEND
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 1
33 virtual ::std::string const& getName() const /*override*/;
34
35 // vIndex: 2
36 virtual void executeAction(::RenderParams& params) const /*override*/;
37
38 // vIndex: 3
39 virtual void buildSchema(
41 ::Factory<::EventResponse> const& factory
42 ) const /*override*/;
43
44 // vIndex: 0
45 virtual ~MobEffectResponse() /*override*/ = default;
46 // NOLINTEND
47
48public:
49 // static variables
50 // NOLINTBEGIN
51 MCNAPI static ::std::string const& NameID();
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCNAPI ::std::string const& $getName() const;
58
59 MCNAPI void $executeAction(::RenderParams& params) const;
60
61 MCNAPI void $buildSchema(
63 ::Factory<::EventResponse> const& factory
64 ) const;
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCNAPI static void** $vftable();
71 // NOLINTEND
72};
Definition EventResponse.h:16
Definition Factory.h:6
Definition JsonSchemaObjectNode.h:8
Definition MobEffectResponse.h:19
MCAPI::std::string const & $getName() const
static MCAPI void ** $vftable()
MCAPI void $buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::EventResponseCollection > > &root, ::Factory<::EventResponse > const &factory) const
MCAPI void $executeAction(::RenderParams &params) const
static MCAPI ::std::string const & NameID()
Definition RenderParams.h:30
Definition EventResponseCollection.h:10