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 // vIndex: 2
13 virtual int getMinCost(int level) const /*override*/;
14
15 // vIndex: 3
16 virtual int getMaxCost(int level) const /*override*/;
17
18 // vIndex: 5
19 virtual int getMaxLevel() const /*override*/;
20
21 // vIndex: 1
22 virtual bool isCompatibleWith(::Enchant::Type type) const /*override*/;
23
24 // vIndex: 16
25 virtual bool _isValidEnchantmentTypeForCategory(::Enchant::Type type) const /*override*/;
26
27 // vIndex: 0
28 virtual ~CrossbowEnchant() /*override*/ = default;
29 // NOLINTEND
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI CrossbowEnchant(
35 ::Enchant::Type __param6,
36 ::Enchant::Frequency,
37 ::std::string_view,
38 ::std::string_view,
39 ::Enchant::VillagerTrading,
40 int,
41 int
42 );
43 // NOLINTEND
44
45public:
46 // static variables
47 // NOLINTBEGIN
48 MCAPI static ::std::vector<::Enchant::Type> const& VALID_ENCHANTMENTS();
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCAPI void* $ctor(
55 ::Enchant::Type __param6,
56 ::Enchant::Frequency,
57 ::std::string_view,
58 ::std::string_view,
59 ::Enchant::VillagerTrading,
60 int,
61 int
62 );
63 // NOLINTEND
64
65public:
66 // destructor thunk
67 // NOLINTBEGIN
68
69 // NOLINTEND
70
71public:
72 // virtual function thunks
73 // NOLINTBEGIN
74 MCAPI int $getMinCost(int level) const;
75
76 MCAPI int $getMaxCost(int level) const;
77
78 MCAPI int $getMaxLevel() const;
79
80 MCAPI bool $isCompatibleWith(::Enchant::Type type) const;
81
82 MCAPI bool $_isValidEnchantmentTypeForCategory(::Enchant::Type type) const;
83 // NOLINTEND
84
85public:
86 // vftables
87 // NOLINTBEGIN
88 MCAPI static void** $vftable();
89 // NOLINTEND
90};
Definition CrossbowEnchant.h:8
Definition Enchant.h:14