LeviLamina
Loading...
Searching...
No Matches
ActorLimitedLifetimeComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Actor;
8class CompoundTag;
9// clang-format on
10
11class ActorLimitedLifetimeComponent {
12public:
13 // member functions
14 // NOLINTBEGIN
15 MCAPI ActorLimitedLifetimeComponent();
16
17 MCAPI void addAdditionalSaveData(::Actor const& owner, ::CompoundTag& tag) const;
18
19 MCAPI void readAdditionalSaveData(::Actor& owner, ::CompoundTag const& tag);
20 // NOLINTEND
21
22public:
23 // static functions
24 // NOLINTBEGIN
25 MCAPI static void convertFromLegacyData(::CompoundTag const& tag, ::CompoundTag& outTag);
26
27 MCAPI static bool needsLegacyConversion(::CompoundTag const& tag);
28 // NOLINTEND
29
30public:
31 // constructor thunks
32 // NOLINTBEGIN
33 MCFOLD void* $ctor();
34 // NOLINTEND
35};
Definition Actor.h:125
Definition CompoundTag.h:23