LeviLamina
Loading...
Searching...
No Matches
CraftingContext.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/NonOwnerPointer.h"
7
8// auto generated forward declare list
9// clang-format off
10class ILevel;
11// clang-format on
12
14public:
15 // CraftingContext inner types declare
16 // clang-format off
17 class Impl;
18 // clang-format on
19
20 // CraftingContext inner types define
21 class Impl {
22 public:
23 // member variables
24 // NOLINTBEGIN
33 // NOLINTEND
34
35 public:
36 // prevent constructor by default
37 Impl& operator=(Impl const&);
38 Impl(Impl const&);
39 Impl();
40
41 public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI explicit Impl(::Bedrock::NotNullNonOwnerPtr<::ILevel> level);
45
46 MCAPI ~Impl();
47 // NOLINTEND
48
49 public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(::Bedrock::NotNullNonOwnerPtr<::ILevel> level);
53 // NOLINTEND
54
55 public:
56 // destructor thunk
57 // NOLINTBEGIN
58 MCAPI void $dtor();
59 // NOLINTEND
60 };
61
62public:
63 // member variables
64 // NOLINTBEGIN
66 // NOLINTEND
67
68public:
69 // prevent constructor by default
70 CraftingContext& operator=(CraftingContext const&);
73
74public:
75 // member functions
76 // NOLINTBEGIN
77 MCAPI explicit CraftingContext(::Bedrock::NotNullNonOwnerPtr<::ILevel> level);
78
79 MCAPI ~CraftingContext();
80 // NOLINTEND
81
82public:
83 // constructor thunks
84 // NOLINTBEGIN
85 MCAPI void* $ctor(::Bedrock::NotNullNonOwnerPtr<::ILevel> level);
86 // NOLINTEND
87
88public:
89 // destructor thunk
90 // NOLINTBEGIN
91 MCAPI void $dtor();
92 // NOLINTEND
93};
Definition CraftingContext.h:21
Definition CraftingContext.h:13
Definition ILevel.h:203
Definition Alias.h:14