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
33
34 MCNAPI BaseGameVersion(ushort major, uint minor, uint patch);
35
36 MCNAPI ::std::string asString() const;
37
38 MCNAPI bool isCompatibleWith(::BaseGameVersion const& baseGameVersion) const;
39
40 MCNAPI bool operator<=(::BaseGameVersion const& rhs) const;
41
42 MCNAPI ::BaseGameVersion& operator=(::BaseGameVersion const&);
43
44 MCNAPI bool operator>=(::BaseGameVersion const& rhs) const;
45
47 // NOLINTEND
48
49public:
50 // static functions
51 // NOLINTBEGIN
52 MCNAPI static ::SemVersion::MatchType fromString(::std::string const& source, ::BaseGameVersion& output);
53 // NOLINTEND
54
55public:
56 // static variables
57 // NOLINTBEGIN
58 MCNAPI static ::BaseGameVersion const& ANY();
59
60 MCNAPI static ::BaseGameVersion const& EMPTY();
61
62 MCNAPI static ::BaseGameVersion const& INCOMPATIBLE();
63 // NOLINTEND
64
65public:
66 // constructor thunks
67 // NOLINTBEGIN
68 MCNAPI void* $ctor(::BaseGameVersion const& rhs);
69
70 MCNAPI void* $ctor(ushort major, uint minor, uint patch);
71 // NOLINTEND
72
73public:
74 // destructor thunk
75 // NOLINTBEGIN
76 MCNAPI void $dtor();
77 // NOLINTEND
78};
Definition BaseGameVersion.h:8
MCAPI::std::string asString() const
static MCAPI ::BaseGameVersion const & EMPTY()
MCAPI::BaseGameVersion & operator=(::BaseGameVersion const &)
MCAPI bool operator<=(::BaseGameVersion const &rhs) const
MCAPI ~BaseGameVersion()
MCAPI void * $ctor(ushort major, uint minor, uint patch)
static MCAPI ::BaseGameVersion const & INCOMPATIBLE()
MCAPI void * $ctor(::BaseGameVersion const &rhs)
MCAPI BaseGameVersion(ushort major, uint minor, uint patch)
MCAPI void $dtor()
MCAPI BaseGameVersion(::BaseGameVersion const &rhs)
static MCAPI ::BaseGameVersion const & ANY()
MCAPI bool isCompatibleWith(::BaseGameVersion const &baseGameVersion) const
MCAPI bool operator>=(::BaseGameVersion const &rhs) const
static MCAPI ::SemVersion::MatchType fromString(::std::string const &source, ::BaseGameVersion &output)
Definition BaseGameVersion.h:16