LeviLamina
Loading...
Searching...
No Matches
DiggerBlockTypeInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/shared_types/legacy/BlockDescriptor.h"
7#include "mc/world/actor/DefinitionTrigger.h"
8
9struct DiggerBlockTypeInfo {
10public:
11 // member variables
12 // NOLINTBEGIN
13 ::ll::TypedStorage<8, 80, ::SharedTypes::Legacy::BlockDescriptor> filter;
14 ::ll::TypedStorage<4, 4, int> destroySpeed;
15 ::ll::TypedStorage<8, 56, ::DefinitionTrigger> onDig;
16 // NOLINTEND
17
18#ifdef LL_PLAT_S
19public:
20 // prevent constructor by default
21 DiggerBlockTypeInfo& operator=(DiggerBlockTypeInfo const&);
22 DiggerBlockTypeInfo();
23
24#else // LL_PLAT_C
25public:
26 // prevent constructor by default
27 DiggerBlockTypeInfo();
28
29#endif
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI DiggerBlockTypeInfo(::DiggerBlockTypeInfo const&);
34
35 MCAPI ::DiggerBlockTypeInfo& operator=(::DiggerBlockTypeInfo&&);
36
37#ifdef LL_PLAT_C
38 MCAPI ::DiggerBlockTypeInfo& operator=(::DiggerBlockTypeInfo const&);
39#endif
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor(::DiggerBlockTypeInfo const&);
46 // NOLINTEND
47};
48
49// free functions
50// NOLINTBEGIN
51MCAPI bool operator==(::DiggerBlockTypeInfo const& __P0, ::DiggerBlockTypeInfo const& __P1);
52// NOLINTEND
Definition DiggerBlockTypeInfo.h:9