LeviLamina
Loading...
Searching...
No Matches
ItemGroup.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class ItemInstance;
8// clang-format on
9
10class ItemGroup {
11public:
12 // member variables
13 // NOLINTBEGIN
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 ItemGroup& operator=(ItemGroup const&);
21 ItemGroup(ItemGroup const&);
22 ItemGroup();
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCAPI explicit ItemGroup(::ItemInstance const& itemInstance);
28
29 MCAPI ~ItemGroup();
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCAPI void* $ctor(::ItemInstance const& itemInstance);
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCFOLD void $dtor();
42 // NOLINTEND
43};
Definition ItemGroup.h:10
Definition ItemInstance.h:16
Definition Alias.h:14