pixel8-console 0.1.0

Pixel8: a PICO-8-like fantasy console for Rust games
Documentation
1
2
3
4
5
6
7
8
9
//! The five editor modes: code, sprite, map, SFX and music.

pub mod code;
pub mod file_picker;
pub mod history;
pub mod map;
pub mod music;
pub mod sfx;
pub mod sprite;