mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-31 00:10:26 -06:00
12 lines
162 B
C++
12 lines
162 B
C++
#pragma once
|
|
|
|
struct PlatformVersion
|
|
{
|
|
public:
|
|
uint32_t Major{};
|
|
uint32_t Minor{};
|
|
uint32_t Build{};
|
|
};
|
|
|
|
extern PlatformVersion GetPlatformVersion();
|