LeviLamina
Loading...
Searching...
No Matches
ActorInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ActorDefinitionIdentifier.h"
7
8// auto generated forward declare list
9// clang-format off
10class CompoundTag;
11// clang-format on
12
13struct ActorInfo {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<4, 4, uint> mRuntimeId;
18 ::ll::TypedStorage<8, 176, ::ActorDefinitionIdentifier> mIdentifier;
19 ::ll::TypedStorage<8, 176, ::ActorDefinitionIdentifier> mBaseIdentifier;
20 ::ll::TypedStorage<1, 1, bool> mHasSpawnEgg;
21 ::ll::TypedStorage<1, 1, bool> mIsSummonable;
22 ::ll::TypedStorage<4, 8, ::std::optional<int>> mExperimentIndex;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 ActorInfo& operator=(ActorInfo const&);
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI ActorInfo();
33
34 MCAPI ActorInfo(::ActorInfo const&);
35
36 MCAPI void load(::CompoundTag const* tag);
37
38 MCAPI ::std::unique_ptr<::CompoundTag> save() const;
39
40 MCAPI ~ActorInfo();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor();
47
48 MCAPI void* $ctor(::ActorInfo const&);
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCAPI void $dtor();
55 // NOLINTEND
56};
Definition CompoundTag.h:13
Definition ActorInfo.h:13