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
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
19public:
20 // prevent constructor by default
21 MinEngineVersion& operator=(MinEngineVersion const&);
23
24public:
25 // member functions
26 // NOLINTBEGIN
28
29 MCAPI ::MinEngineVersion& operator=(::MinEngineVersion&&);
30
31 MCAPI ~MinEngineVersion();
32 // NOLINTEND
33
34public:
35 // static functions
36 // NOLINTBEGIN
37 MCAPI static ::MinEngineVersion fromString(::std::string const& string);
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(::MinEngineVersion const&);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCFOLD void $dtor();
50 // NOLINTEND
51};
Definition MinEngineVersion.h:10