LeviLamina
Loading...
Searching...
No Matches
TemporalAttributeBuff.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/effect/EffectDuration.h"
8
9// auto generated forward declare list
10// clang-format off
11class Amplifier;
12// clang-format on
13
14class TemporalAttributeBuff : public ::AttributeBuff {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<4, 4, ::EffectDuration> mDuration;
19 ::ll::TypedStorage<4, 4, int> mLifeTimer;
20 ::ll::TypedStorage<4, 4, float> mBaseAmount;
21 ::ll::TypedStorage<1, 1, bool> mIsSerializable;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 TemporalAttributeBuff& operator=(TemporalAttributeBuff const&);
27 TemporalAttributeBuff();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~TemporalAttributeBuff() /*override*/;
33
34 virtual bool shouldBuff() const;
35
36 virtual bool isComplete() const;
37
38 virtual bool isInstantaneous() const /*override*/;
39
40 virtual bool isSerializable() const /*override*/;
41
42 virtual void setDurationAmplifier(::std::shared_ptr<::Amplifier> amplifier) /*override*/;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48 MCAPI TemporalAttributeBuff(::TemporalAttributeBuff const&);
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCAPI void* $ctor(::TemporalAttributeBuff const&);
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60 MCAPI void $dtor();
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCAPI bool $shouldBuff() const;
67
68 MCAPI bool $isComplete() const;
69
70 MCFOLD bool $isInstantaneous() const;
71
72 MCAPI bool $isSerializable() const;
73
74 MCAPI void $setDurationAmplifier(::std::shared_ptr<::Amplifier> amplifier);
75
76
77 // NOLINTEND
78
79public:
80 // vftables
81 // NOLINTBEGIN
82 MCAPI static void** $vftable();
83 // NOLINTEND
84};
Definition Amplifier.h:5