rustraight 0.3.3

A simple 2D game library for Rust, inspired by DXLib
1
2
3
4
5
6
7
8
9
pub use crate::{log_info, log_warn, log_error};
pub use crate::draw::Color;
pub use crate::gamepad::{PadAxis, PadButton};
pub use crate::graphics::{BlendMode, DrawSpriteParams, free_all_graphs, load_div_graph, load_graph};
pub use crate::input::{KeyCode, MouseButton};
pub use crate::screen::Screen;
pub use crate::sound::{free_all_sounds, load_sound, play_sound, set_volume, stop_sound};
pub use crate::text::{get_text_width, load_font};
pub use crate::window::Window;