LeviLamina
Loading...
Searching...
No Matches
Amplifier.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class Amplifier {
6public:
7 // virtual functions
8 // NOLINTBEGIN
9 // vIndex: 0
10 virtual ~Amplifier() = default;
11
12 // vIndex: 1
13 virtual float getAmount(int amplification, float scale) const;
14
15 // vIndex: 2
16 virtual bool shouldBuff(int remainingDuration, int amplification) const;
17
18 // vIndex: 3
19 virtual int getTickInterval(int amplification) const;
20 // NOLINTEND
21
22public:
23 // destructor thunk
24 // NOLINTBEGIN
25
26 // NOLINTEND
27
28public:
29 // virtual function thunks
30 // NOLINTBEGIN
31 MCFOLD float $getAmount(int amplification, float scale) const;
32
33 MCFOLD bool $shouldBuff(int remainingDuration, int amplification) const;
34
35 MCFOLD int $getTickInterval(int amplification) const;
36 // NOLINTEND
37
38public:
39 // vftables
40 // NOLINTBEGIN
41 MCAPI static void** $vftable();
42 // NOLINTEND
43};
Definition Amplifier.h:5