LeviLamina
Loading...
Searching...
No Matches
FeedItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/ItemDescriptor.h"
7
8struct FeedItem {
9public:
10 // FeedItem inner types declare
11 // clang-format off
12 struct Effect;
13 // clang-format on
14
15 // FeedItem inner types define
16 struct Effect {
17 public:
18 // member variables
19 // NOLINTBEGIN
25 // NOLINTEND
26
27 public:
28 // prevent constructor by default
29 Effect(Effect const&);
30 Effect();
31
32 public:
33 // member functions
34 // NOLINTBEGIN
35 MCNAPI ::FeedItem::Effect& operator=(::FeedItem::Effect const&);
36
37 MCNAPI ::FeedItem::Effect& operator=(::FeedItem::Effect&&);
38
39 MCNAPI ~Effect();
40 // NOLINTEND
41
42 public:
43 // destructor thunk
44 // NOLINTBEGIN
45 MCNAPI void $dtor();
46 // NOLINTEND
47 };
48
49public:
50 // member variables
51 // NOLINTBEGIN
52 ::ll::TypedStorage<8, 16, ::ItemDescriptor> mItemDescriptor;
53 ::ll::TypedStorage<4, 4, int> mValue;
54 ::ll::TypedStorage<8, 24, ::std::vector<::FeedItem::Effect>> mEffects;
55 // NOLINTEND
56
57public:
58 // prevent constructor by default
59 FeedItem();
60
61public:
62 // member functions
63 // NOLINTBEGIN
64 MCNAPI FeedItem(::FeedItem const&);
65
66 MCNAPI void addEffect(::FeedItem::Effect const& effect);
67
68 MCNAPI ::FeedItem& operator=(::FeedItem const&);
69
70 MCNAPI ::FeedItem& operator=(::FeedItem&&);
71
72 MCNAPI ~FeedItem();
73 // NOLINTEND
74
75public:
76 // constructor thunks
77 // NOLINTBEGIN
78 MCNAPI void* $ctor(::FeedItem const&);
79 // NOLINTEND
80
81public:
82 // destructor thunk
83 // NOLINTBEGIN
84 MCNAPI void $dtor();
85 // NOLINTEND
86};
Definition FeedItem.h:16
MCAPI void $dtor()
MCAPI::FeedItem::Effect & operator=(::FeedItem::Effect const &)
MCAPI::FeedItem::Effect & operator=(::FeedItem::Effect &&)
Definition FeedItem.h:8
MCAPI::FeedItem & operator=(::FeedItem &&)
MCAPI void addEffect(::FeedItem::Effect const &effect)
MCAPI void * $ctor(::FeedItem const &)
MCAPI ~FeedItem()
MCAPI::FeedItem & operator=(::FeedItem const &)
MCAPI FeedItem(::FeedItem const &)
MCAPI void $dtor()
Definition Alias.h:14