17 releases
new 0.3.1 | Mar 19, 2025 |
---|---|
0.2.7 | Feb 14, 2025 |
0.2.5 | Jul 13, 2024 |
0.2.2 | Oct 1, 2023 |
#2437 in Game dev
296 downloads per month
Used in 2 crates
26MB
410K
SLoC
System Menu API for PlayDate
High-level system menu API built on-top of playdate-sys.
⚠️ Prior to the version 1.0
API is unstable and can be changed without deprecation period.
Usage
extern crate playdate_menu;
use playdate_menu::*;
fn callback(userdata: &mut u32) { *userdata += 1 }
let simple = SimpleMenuItem::new("Simple", Some(callback), 0);
let check = CheckMenuItem::new("Check", false, None, ());
let opts = OptionsMenuItem::new("Opts", ["No", "Yes"], None, ());
This software is not sponsored or supported by Panic.