LeviLamina
Loading...
Searching...
No Matches
TradeItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
9// clang-format on
10
11struct TradeItem {
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<4, 4, int> itemId;
16 ::ll::TypedStorage<4, 4, int> itemAux;
17 ::ll::TypedStorage<4, 4, int> count_min;
18 ::ll::TypedStorage<4, 4, int> count_max;
19 ::ll::TypedStorage<4, 4, float> price_multiplier;
20 ::ll::TypedStorage<8, 32, ::std::string> originalName;
21 ::ll::TypedStorage<8, 64, ::ActorFilterGroup> filter;
22 ::ll::TypedStorage<8, 24, ::std::vector<::std::unique_ptr<::LootItemFunction>>> functions;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 TradeItem& operator=(TradeItem const&);
28 TradeItem(TradeItem const&);
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI TradeItem(::TradeItem&&);
34
35 MCAPI ::TradeItem& operator=(::TradeItem&&);
36
37 MCAPI ~TradeItem();
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(::TradeItem&&);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCAPI void $dtor();
50 // NOLINTEND
51};
Definition ActorFilterGroup.h:16
Definition LootItemFunction.h:17
Definition TradeItem.h:11