LeviLamina
Loading...
Searching...
No Matches
ActorInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class CompoundTag;
8// clang-format on
9
10struct ActorInfo {
11public:
12 // member variables
13 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 ActorInfo& operator=(ActorInfo const&);
25 ActorInfo(ActorInfo const&);
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCAPI ActorInfo();
31
32 MCAPI void load(::CompoundTag const* tag);
33
34 MCAPI ::std::unique_ptr<::CompoundTag> save() const;
35
36 MCAPI ~ActorInfo();
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCAPI void* $ctor();
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCAPI void $dtor();
49 // NOLINTEND
50};
Definition CompoundTag.h:13
Definition ActorInfo.h:10
Definition Alias.h:14