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