LeviLamina
Loading...
Searching...
No Matches
VersionedActorDamageCause.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/Version.h"
7#include "mc/deps/shared_types/legacy/actor/ActorDamageCause.h"
8
9class VersionedActorDamageCause {
10public:
11 // member variables
12 // NOLINTBEGIN
13 ::ll::TypedStorage<8, 32, ::std::string const> mName;
14 ::ll::TypedStorage<4, 4, ::SharedTypes::Legacy::ActorDamageCause const> mCause;
15 ::ll::TypedStorage<8, 40, ::Scripting::Version const> mVersion;
16 ::ll::TypedStorage<1, 2, ::std::optional<uchar> const> mDeprecatedMajorVersion;
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 VersionedActorDamageCause& operator=(VersionedActorDamageCause const&);
22 VersionedActorDamageCause();
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCAPI VersionedActorDamageCause(::VersionedActorDamageCause&&);
28
29 MCAPI VersionedActorDamageCause(::VersionedActorDamageCause const&);
30
31 MCAPI VersionedActorDamageCause(
32 ::std::string name,
33 ::SharedTypes::Legacy::ActorDamageCause cause,
35 ::std::optional<uchar> deprecatedMajorVersion
36 );
37
38 MCFOLD ::SharedTypes::Legacy::ActorDamageCause getCause() const;
39
40 MCAPI ::std::optional<uchar> getDeprecatedMajorVersion() const;
41
42 MCFOLD ::std::string const& getName() const;
43
44 MCAPI ::Scripting::Version getVersion() const;
45
46 MCAPI ~VersionedActorDamageCause();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCFOLD void* $ctor(::VersionedActorDamageCause&&);
53
54 MCFOLD void* $ctor(::VersionedActorDamageCause const&);
55
56 MCAPI void* $ctor(
57 ::std::string name,
58 ::SharedTypes::Legacy::ActorDamageCause cause,
60 ::std::optional<uchar> deprecatedMajorVersion
61 );
62 // NOLINTEND
63
64public:
65 // destructor thunk
66 // NOLINTBEGIN
67 MCFOLD void $dtor();
68 // NOLINTEND
69};
Definition Version.h:7