playdate-system

Crates.ioplaydate-system
lib.rsplaydate-system
version0.3.13
sourcesrc
created_at2023-09-15 20:33:15.846952
updated_at2024-06-15 16:13:44.798375
descriptionHigh-level System API built on-top of Playdate API
homepagehttps://github.com/boozook/playdate
repositoryhttps://github.com/boozook/playdate.git
max_upload_size
id973935
size61,814
Alexander Koz. (boozook)

documentation

README

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.

Commit count: 445

cargo fmt