LeviLamina
Loading...
Searching...
No Matches
BaseGameVersion.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
9public:
10 // BaseGameVersion inner types declare
11 // clang-format off
13 // clang-format on
14
15 // BaseGameVersion inner types define
17
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 24, ::SemVersion> mSemVersion;
22 ::ll::TypedStorage<1, 1, bool> mNeverCompatible;
23 // NOLINTEND
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI BaseGameVersion();
29
30 MCAPI BaseGameVersion(::BaseGameVersion const& rhs);
31
32 MCAPI BaseGameVersion(ushort major, uint minor, uint patch);
33
34 MCAPI ::std::string asString() const;
35
36 MCAPI bool isCompatibleWith(::BaseGameVersion const& baseGameVersion) const;
37
38 MCAPI bool operator<=(::BaseGameVersion const& rhs) const;
39
40 MCAPI ::BaseGameVersion& operator=(::BaseGameVersion const&);
41
42 MCAPI bool operator>=(::BaseGameVersion const& rhs) const;
43
44 MCAPI ~BaseGameVersion();
45 // NOLINTEND
46
47public:
48 // static functions
49 // NOLINTBEGIN
50 MCAPI static ::SemVersion::MatchType fromString(::std::string const& source, ::BaseGameVersion& output);
51 // NOLINTEND
52
53public:
54 // static variables
55 // NOLINTBEGIN
56 MCAPI static ::BaseGameVersion const& ANY();
57
58 MCAPI static ::BaseGameVersion const& EMPTY();
59
60 MCAPI static ::BaseGameVersion const& INCOMPATIBLE();
61 // NOLINTEND
62
63public:
64 // constructor thunks
65 // NOLINTBEGIN
66 MCFOLD void* $ctor();
67
68 MCFOLD void* $ctor(::BaseGameVersion const& rhs);
69
70 MCAPI void* $ctor(ushort major, uint minor, uint patch);
71 // NOLINTEND
72
73public:
74 // destructor thunk
75 // NOLINTBEGIN
76 MCFOLD void $dtor();
77 // NOLINTEND
78};
Definition BaseGameVersion.h:8
Definition BaseGameVersion.h:16