LeviLamina
Loading...
Searching...
No Matches
ItemDescriptorCount.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/ItemDescriptor.h"
7
8// auto generated forward declare list
9// clang-format off
10class BinaryStream;
11// clang-format on
12
13class ItemDescriptorCount : public ::ItemDescriptor {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<2, 2, ushort> mStackSize;
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 ItemDescriptorCount();
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual void serialize(::BinaryStream& stream) const /*override*/;
28
29 virtual ~ItemDescriptorCount() /*override*/;
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI ItemDescriptorCount(::ItemDescriptorCount const&);
36
37 MCAPI explicit operator bool() const;
38
39 MCFOLD ::ItemDescriptorCount& operator=(::ItemDescriptorCount const&);
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor(::ItemDescriptorCount const&);
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCFOLD void $dtor();
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCAPI void $serialize(::BinaryStream& stream) const;
58
59
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCAPI static void** $vftable();
66 // NOLINTEND
67};
Definition BinaryStream.h:11