Files
playdate-kit/Sources/PlaydateKit/System/Structures/Info.swift
T

11 lines
357 B
Swift
Raw Normal View History

extension System {
2026-09-18 13:15:08 +00:00
/// OS, language, and SDK version information. Mirrors `PDInfo`.
public struct Info: Sendable {
2026-09-18 13:15:08 +00:00
/// E.g. 20705 for 2.7.5.
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.
public let pdxVersion: UInt32
}
}