LeviLamina
Loading...
Searching...
No Matches
CraftableElements.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/ElementType.h"
7
8class CraftableElements {
9public:
10 // member variables
11 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 CraftableElements& operator=(CraftableElements const&);
19 CraftableElements(CraftableElements const&);
20 CraftableElements();
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25#ifdef LL_PLAT_S
26 virtual ~CraftableElements() = default;
27#else // LL_PLAT_C
28 virtual ~CraftableElements();
29#endif
30
31 virtual void registerElements();
32
33 virtual void _registerElement(int electrons, int neutrons, ::ElementType result);
34 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
39#ifdef LL_PLAT_C
40 MCNAPI void _registerElementRange(
41 int electrons,
42 int neutronStart,
43 int neutronEnd,
44 ::std::vector<int> const& additionalNeutrons,
45 int defaultNeutron,
46 ::ElementType result
47 );
48#endif
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCNAPI void $dtor();
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60#ifdef LL_PLAT_C
61 MCNAPI void $registerElements();
62
63 MCNAPI void $_registerElement(int electrons, int neutrons, ::ElementType result);
64#endif
65
66
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCNAPI static void** $vftable();
73 // NOLINTEND
74};
static MCAPI void ** $vftable()
MCAPI void $dtor()
Definition Alias.h:14