LeviLamina
Loading...
Searching...
No Matches
BuildInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Common {
6
7struct BuildInfo {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::std::string mGameVersion;
12 ::std::string mBuildId;
13 ::std::string mCommitId;
14 ::std::string mBranchId;
15 ::std::string mFlavor;
16 // NOLINTEND
17
18public:
19 // member functions
20 // NOLINTBEGIN
21 MCAPI ~BuildInfo();
22 // NOLINTEND
23
24public:
25 // destructor thunk
26 // NOLINTBEGIN
27 MCFOLD void $dtor();
28 // NOLINTEND
29};
30
31} // namespace Common
Definition BuildInfo.h:7