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 MCNAPI ActorInfo();
31
32 MCNAPI void load(::CompoundTag const* tag);
33
34 MCNAPI ::std::unique_ptr<::CompoundTag> save() const;
35
36 MCNAPI ~ActorInfo();
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCNAPI void* $ctor();
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCNAPI void $dtor();
49 // NOLINTEND
50};
Definition CompoundTag.h:13
Definition ActorInfo.h:10
MCAPI void $dtor()
MCAPI ActorInfo()
MCAPI void * $ctor()
MCAPI void load(::CompoundTag const *tag)
MCAPI ::std::unique_ptr<::CompoundTag > save() const
MCAPI ~ActorInfo()
Definition Alias.h:14