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