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
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<2, 2, ushort> mStackSize;
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 1
28 virtual void serialize(::BinaryStream& stream) const /*override*/;
29
30 // vIndex: 0
31 virtual ~ItemDescriptorCount() /*override*/;
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
38
39 MCAPI ItemDescriptorCount(::ItemDescriptor const& descriptor, ushort stackSize);
40
41 MCAPI explicit operator bool() const;
42
43 MCFOLD ::ItemDescriptorCount& operator=(::ItemDescriptorCount const&);
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCAPI void* $ctor(::ItemDescriptorCount const&);
50
51 MCAPI void* $ctor(::ItemDescriptor const& descriptor, ushort stackSize);
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCFOLD void $dtor();
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCAPI void $serialize(::BinaryStream& stream) const;
64 // NOLINTEND
65
66public:
67 // vftables
68 // NOLINTBEGIN
69 MCNAPI static void** $vftable();
70 // NOLINTEND
71};
Definition BinaryStream.h:10
Definition ItemDescriptorCount.h:13
static MCAPI void ** $vftable()
Definition ItemDescriptor.h:22
Definition serialize.h:11