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 // virtual function thunks
24 // NOLINTBEGIN
25 MCNAPI float $getAmount(int amplification, float scale) const;
26
27 MCNAPI bool $shouldBuff(int remainingDuration, int amplification) const;
28
29 MCNAPI int $getTickInterval(int amplification) const;
30 // NOLINTEND
31
32public:
33 // vftables
34 // NOLINTBEGIN
35 MCNAPI static void** $vftable();
36 // NOLINTEND
37};
Definition Amplifier.h:5
MCAPI float $getAmount(int amplification, float scale) const
MCAPI bool $shouldBuff(int remainingDuration, int amplification) const
static MCAPI void ** $vftable()
MCAPI int $getTickInterval(int amplification) const