LeviLamina
Loading...
Searching...
No Matches
ItemChargeEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class ItemInstance;
8class WeakEntityRef;
9// clang-format on
10
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<8, 128, ::ItemInstance> mItemInstance;
16 ::ll::TypedStorage<8, 24, ::WeakEntityRef> mActor;
17 ::ll::TypedStorage<4, 4, int> mUseDuration;
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 ItemChargeEvent& operator=(ItemChargeEvent const&);
23
24public:
25 // member functions
26 // NOLINTBEGIN
28
30
31 MCAPI ItemChargeEvent(::ItemInstance const& inst, ::WeakEntityRef actor, int useDuration);
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCAPI void* $ctor(::ItemChargeEvent&&);
38
39 MCAPI void* $ctor(::ItemChargeEvent const&);
40
41 MCAPI void* $ctor(::ItemInstance const& inst, ::WeakEntityRef actor, int useDuration);
42 // NOLINTEND
43};
Definition ItemInstance.h:16
Definition WeakEntityRef.h:14
Definition ItemChargeEvent.h:11