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