LeviLamina
Loading...
Searching...
No Matches
ExperiencePotion.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/projectile/Throwable.h"
7
9public:
10 // virtual functions
11 // NOLINTBEGIN
12 virtual float getGravity() /*override*/;
13
14 virtual float getThrowPower() /*override*/;
15
16 virtual float getThrowUpAngleOffset() /*override*/;
17
18 virtual ~ExperiencePotion() /*override*/ = default;
19 // NOLINTEND
20
21public:
22 // virtual function thunks
23 // NOLINTBEGIN
24 MCFOLD float $getGravity();
25
26 MCFOLD float $getThrowPower();
27
28 MCAPI float $getThrowUpAngleOffset();
29
30
31 // NOLINTEND
32
33public:
34 // vftables
35 // NOLINTBEGIN
36 MCAPI static void** $vftable();
37 // NOLINTEND
38};
Definition ExperiencePotion.h:8
Definition Throwable.h:22