LeviLamina
Loading...
Searching...
No Matches
InstantaneousAttributeBuff.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/attribute/AttributeBuff.h"
7#include "mc/world/attribute/AttributeBuffType.h"
8
9// auto generated forward declare list
10// clang-format off
12// clang-format on
13
14class InstantaneousAttributeBuff : public ::AttributeBuff {
15public:
16 // prevent constructor by default
17 InstantaneousAttributeBuff();
18
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 virtual ~InstantaneousAttributeBuff() /*override*/;
23
24 virtual bool isInstantaneous() const /*override*/;
25
26 virtual bool isSerializable() const /*override*/;
27 // NOLINTEND
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI InstantaneousAttributeBuff(float amount, ::ActorDamageSource const& source);
33
34 MCAPI InstantaneousAttributeBuff(float amount, ::AttributeBuffType type);
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCAPI void* $ctor(float amount, ::ActorDamageSource const& source);
41
42 MCAPI void* $ctor(float amount, ::AttributeBuffType type);
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCAPI void $dtor();
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCFOLD bool $isInstantaneous() const;
55
56 MCFOLD bool $isSerializable() const;
57
58
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCAPI static void** $vftable();
65 // NOLINTEND
66};
Definition ActorDamageSource.h:18