19 releases

0.3.13 Jun 15, 2024
0.3.12 May 30, 2024
0.3.10 Apr 22, 2024
0.3.8 Oct 27, 2023
0.1.2 Sep 21, 2023

#1670 in Game dev

26 downloads per month
Used in 10 crates

MIT/Apache

15MB
335K SLoC

System API for PlayDate

High-level system API built on-top of playdate-sys.

Usage

use playdate_system::*;
use playdate_sys::println;

let system = System::new();

match system.language() {
	PDLanguage::English => println!("Hello"),
	PDLanguage::Japanese => println!("こんにちは"),
	PDLanguage::Unknown => println!("Привет"),
}
system.draw_fps(20, 20);

This software is not sponsored or supported by Panic.

Dependencies