LeviLamina
Loading...
Searching...
No Matches
OnFallOnTriggerDescription.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/json_util/JsonSchemaObjectNode.h"
7#include "mc/world/level/block/components/triggers/BlockTriggerDescription.h"
8
9// auto generated forward declare list
10// clang-format off
13class OnFallOnTrigger;
15namespace JsonUtil { class EmptyClass; }
16// clang-format on
17
18class OnFallOnTriggerDescription : public ::BlockTriggerDescription<::OnFallOnTrigger> {
19public:
20 // member variables
21 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 1
35 virtual ::std::string const& getName() const /*override*/;
36
37 // vIndex: 2
38 virtual void initializeComponent(::BlockComponentStorage& blockComponentStorage) const /*override*/;
39
40 // vIndex: 6
41 virtual void buildSchema(
43 componentSchema,
44 ::BlockComponentFactory const& factory
45 ) const /*override*/;
46
47 // vIndex: 0
48 virtual ~OnFallOnTriggerDescription() /*override*/ = default;
49 // NOLINTEND
50
51public:
52 // static variables
53 // NOLINTBEGIN
54 MCNAPI static ::std::string const& NameID();
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCNAPI ::std::string const& $getName() const;
61
62 MCNAPI void $initializeComponent(::BlockComponentStorage& blockComponentStorage) const;
63
64 MCNAPI void $buildSchema(
66 componentSchema,
67 ::BlockComponentFactory const& factory
68 ) const;
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftable();
75 // NOLINTEND
76};
Definition BlockComponentFactory.h:19
Definition BlockComponentStorage.h:8
Definition JsonSchemaObjectNode.h:8
Definition OnFallOnTriggerDescription.h:18
static MCAPI ::std::string const & NameID()
MCAPI void $buildSchema(::std::shared_ptr<::JsonUtil::JsonSchemaObjectNode<::JsonUtil::EmptyClass, ::BlockComponentGroupDescription > > &componentSchema, ::BlockComponentFactory const &factory) const
MCAPI void $initializeComponent(::BlockComponentStorage &blockComponentStorage) const
MCAPI::std::string const & $getName() const
static MCAPI void ** $vftable()
Definition OnFallOnTrigger.h:14
Definition BlockComponentGroupDescription.h:12
Definition BlockTriggerDescription.h:6
Definition Alias.h:14