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 virtual ::std::string const& getName() const /*override*/;
33
34 virtual void executeAction(::RenderParams& params) const /*override*/;
35
36 virtual void buildSchema(
38 ::Factory<::EventResponse> const& factory
39 ) const /*override*/;
40
41 virtual ~MobEffectResponse() /*override*/ = default;
42 // NOLINTEND
43
44public:
45 // static variables
46 // NOLINTBEGIN
47 MCNAPI static ::std::string const& NameID();
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCNAPI ::std::string const& $getName() const;
54
55 MCNAPI void $executeAction(::RenderParams& params) const;
56
57 MCNAPI void $buildSchema(
59 ::Factory<::EventResponse> const& factory
60 ) const;
61
62
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCNAPI static void** $vftable();
69 // NOLINTEND
70};
Definition EventResponse.h:16
Definition Factory.h:6
Definition EmptyClass.h:7
Definition JsonSchemaObjectNode.h:8
Definition MobEffectResponse.h:19
MCAPI::std::string const & $getName() const
static MCAPI void ** $vftable()
MCAPI void $executeAction(::RenderParams &params) const
static MCAPI ::std::string const & NameID()
MCAPI void $buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::EventResponseCollection > > &schema, ::Factory<::EventResponse > const &factory) const
Definition RenderParams.h:30
Definition EventResponseCollection.h:10