2026-07-25 12:39:32 +02:00
|
|
|
extension System {
|
2026-09-18 13:15:08 +00:00
|
|
|
/// OS, language, and SDK version information. Mirrors `PDInfo`.
|
2026-07-25 12:39:32 +02:00
|
|
|
public struct Info: Sendable {
|
2026-09-18 13:15:08 +00:00
|
|
|
/// E.g. 20705 for 2.7.5.
|
2026-07-25 12:39:32 +02:00
|
|
|
public let osVersion: UInt32
|
|
|
|
|
public let language: Language
|
2026-09-18 13:15:08 +00:00
|
|
|
/// The pdxinfo `pdxversion`: the SDK version the game was built with.
|
2026-07-25 12:39:32 +02:00
|
|
|
public let pdxVersion: UInt32
|
|
|
|
|
}
|
|
|
|
|
}
|