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 // prevent constructor by default
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI BaseGameVersion(::BaseGameVersion const& rhs);
33
34 MCAPI BaseGameVersion(ushort major, uint minor, uint patch);
35
36 MCAPI ::std::string asString() const;
37
38 MCAPI bool isCompatibleWith(::BaseGameVersion const& baseGameVersion) const;
39
40 MCFOLD bool operator<=(::BaseGameVersion const& rhs) const;
41
42 MCAPI ::BaseGameVersion& operator=(::BaseGameVersion const&);
43
44 MCAPI bool operator>=(::BaseGameVersion const& rhs) const;
45
46 MCAPI ~BaseGameVersion();
47 // NOLINTEND
48
49public:
50 // static functions
51 // NOLINTBEGIN
52 MCAPI static ::SemVersion::MatchType fromString(::std::string const& source, ::BaseGameVersion& output);
53 // NOLINTEND
54
55public:
56 // static variables
57 // NOLINTBEGIN
58 MCAPI static ::BaseGameVersion const& ANY();
59
60 MCAPI static ::BaseGameVersion const& EMPTY();
61
62 MCAPI static ::BaseGameVersion const& INCOMPATIBLE();
63 // NOLINTEND
64
65public:
66 // constructor thunks
67 // NOLINTBEGIN
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