LeviLamina
Loading...
Searching...
No Matches
CrossbowEnchant.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/enchanting/Enchant.h"
7
8class CrossbowEnchant : public ::Enchant {
9public:
10 // virtual functions
11 // NOLINTBEGIN
12 virtual int getMinCost(int level) const /*override*/;
13
14 virtual int getMaxCost(int level) const /*override*/;
15
16 virtual int getMaxLevel() const /*override*/;
17
18 virtual bool isCompatibleWith(::Enchant::Type type) const /*override*/;
19
20 virtual bool _isValidEnchantmentTypeForCategory(::Enchant::Type type) const /*override*/;
21
22 virtual ~CrossbowEnchant() /*override*/ = default;
23 // NOLINTEND
24
25public:
26 // static variables
27 // NOLINTBEGIN
28 MCAPI static ::std::vector<::Enchant::Type> const& VALID_ENCHANTMENTS();
29 // NOLINTEND
30
31public:
32 // virtual function thunks
33 // NOLINTBEGIN
34 MCAPI int $getMinCost(int level) const;
35
36 MCAPI int $getMaxCost(int level) const;
37
38 MCAPI int $getMaxLevel() const;
39
40 MCAPI bool $isCompatibleWith(::Enchant::Type type) const;
41
42 MCAPI bool $_isValidEnchantmentTypeForCategory(::Enchant::Type type) const;
43
44
45 // NOLINTEND
46
47public:
48 // vftables
49 // NOLINTBEGIN
50 MCAPI static void** $vftable();
51 // NOLINTEND
52};
Definition CrossbowEnchant.h:8