LeviLamina
Loading...
Searching...
No Matches
DouseFireSubcomponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/entity/components_json_legacy/OnHitSubcomponent.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
11class BlockPos;
12class BlockSource;
14namespace Json { class Value; }
15// clang-format on
16
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 // vIndex: 0
22 virtual ~DouseFireSubcomponent() /*override*/ = default;
23
24 // vIndex: 1
25 virtual void readfromJSON(::Json::Value&) /*override*/;
26
27 // vIndex: 2
28 virtual void writetoJSON(::Json::Value&) const /*override*/;
29
30 // vIndex: 3
31 virtual void doOnHitEffect(::Actor& owner, ::ProjectileComponent& component) /*override*/;
32
33 // vIndex: 4
34 virtual char const* getName() /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI void douseFire(::Actor& owner, ::BlockSource& region, ::BlockPos const& pos);
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCFOLD void $readfromJSON(::Json::Value&);
53
54 MCFOLD void $writetoJSON(::Json::Value&) const;
55
56 MCAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent& component);
57
58 MCAPI char const* $getName();
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCAPI static void** $vftable();
65 // NOLINTEND
66};
Definition Actor.h:104
Definition BlockPos.h:18
Definition BlockSource.h:67
Definition DouseFireSubcomponent.h:17
Definition Value.h:16
Definition OnHitSubcomponent.h:12
Definition ProjectileComponent.h:30