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
9class InstantaneousAttributeBuff : public ::AttributeBuff {
10public:
11 // prevent constructor by default
12 InstantaneousAttributeBuff();
13
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 virtual ~InstantaneousAttributeBuff() /*override*/;
18
19 virtual bool isInstantaneous() const /*override*/;
20
21 virtual bool isSerializable() const /*override*/;
22 // NOLINTEND
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCAPI InstantaneousAttributeBuff(float amount, ::AttributeBuffType type);
28 // NOLINTEND
29
30public:
31 // constructor thunks
32 // NOLINTBEGIN
33 MCAPI void* $ctor(float amount, ::AttributeBuffType type);
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCAPI void $dtor();
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCFOLD bool $isInstantaneous() const;
46
47 MCFOLD bool $isSerializable() const;
48
49
50 // NOLINTEND
51
52public:
53 // vftables
54 // NOLINTBEGIN
55 MCAPI static void** $vftable();
56 // NOLINTEND
57};