Files
javier 91783deb7b
CI / Build & test (macOS) (push) Has been cancelled
CI / Embedded Swift cross-compile (push) Has been cancelled
Documentation / deploy (push) Has been cancelled
Added missing documentation to the source code in the Playdate bindings target.
2026-07-25 12:55:53 +02:00

12 lines
359 B
Swift

extension System {
/// OS, language, and pdx version information, mirroring `PDInfo`.
public struct Info: Sendable {
/// The Playdate OS version.
public let osVersion: UInt32
/// The system language.
public let language: Language
/// The version of the game's pdx.
public let pdxVersion: UInt32
}
}