mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-09-05 03:44:34 +02: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();
|