LeviLamina
Loading...
Searching...
No Matches
MinEngineVersion.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/sem_ver/SemVersion.h"
7#include "mc/molang/MolangVersion.h"
8#include "mc/server/commands/CurrentCmdVersion.h"
9
10class MinEngineVersion {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 24, ::SemVersion> mSemVersion;
15 ::ll::TypedStorage<4, 4, ::CurrentCmdVersion> mCommandVersion;
16 ::ll::TypedStorage<2, 2, ::MolangVersion> mMolangVersion;
17 // NOLINTEND
18
19#ifdef LL_PLAT_S
20public:
21 // prevent constructor by default
22 MinEngineVersion& operator=(MinEngineVersion const&);
23 MinEngineVersion(MinEngineVersion const&);
24 MinEngineVersion();
25
26#else // LL_PLAT_C
27public:
28 // prevent constructor by default
29 MinEngineVersion();
30
31#endif
32public:
33 // member functions
34 // NOLINTBEGIN
35#ifdef LL_PLAT_C
36 MCAPI MinEngineVersion(::MinEngineVersion const&);
37#endif
38
39 MCAPI ::MinEngineVersion& operator=(::MinEngineVersion&&);
40
41#ifdef LL_PLAT_C
42 MCAPI ::MinEngineVersion& operator=(::MinEngineVersion const&);
43#endif
44
45 MCAPI bool operator==(::MinEngineVersion const& rhs) const;
46
47 MCAPI ~MinEngineVersion();
48 // NOLINTEND
49
50public:
51 // static functions
52 // NOLINTBEGIN
53 MCAPI static ::MinEngineVersion fromString(::std::string const& string);
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
59#ifdef LL_PLAT_C
60 MCAPI void* $ctor(::MinEngineVersion const&);
61#endif
62 // NOLINTEND
63
64public:
65 // destructor thunk
66 // NOLINTBEGIN
67 MCFOLD void $dtor();
68 // NOLINTEND
69};