pixel_engine 0.3.1

A recreation of the olcPixelEngine by javidx9 written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub use px_draw::graphics;
pub use px_draw::traits;

/// User Input module
pub mod inputs;
mod logic;
mod screen;
pub use graphics::{Color, PixelMode, Sprite};
pub use logic::{Engine, EngineWrapper};
/// Collection of trait used by the user
pub use screen::Screen;