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 ::std::string mMergeBaseSha;
17 // NOLINTEND
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCAPI ~BuildInfo();
23 // NOLINTEND
24
25public:
26 // destructor thunk
27 // NOLINTBEGIN
28 MCFOLD void $dtor();
29 // NOLINTEND
30};
31
32} // namespace Common
Definition BuildInfo.h:7