mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-01 09:12:37 -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();
|