11 releases
Uses old Rust 2015
0.3.0 | Jan 27, 2019 |
---|---|
0.2.1 | Jul 14, 2015 |
0.2.0 | May 13, 2015 |
0.1.0 | Apr 30, 2015 |
0.0.6 | Feb 28, 2015 |
#494 in Graphics APIs
Used in 2 crates
78KB
415 lines
simple
Simple is supposed to be a completely obvious and intuitive game library for Rust. Simple was inspired by LOVE2D. I wrote Simple because I liked the ease-of-use that LOVE2D provided but I wanted the advantage of a typed compiler (Rust).
Simple is a layer built on top of the
sdl2
package. You will need some
development C libraries. On MacOS, you can use Brew to
install them with brew install sdl2
. On Linux, look for a libsdl2-dev
package in your package manager.
Hello World
let mut app = simple::Window::new("hello world", 1920, 1080);
app.set_color(255, 0, 255, 255);
app.draw_rect(simple::Rect{
x: 100,
y: 110,
w: 120,
h: 130,
});
while app.next_frame() {}
Examples
Check out the examples/
directory for some mini-programs that use Simple.
cargo run --example font
Maintainer
Alexander Campbell alexanderhcampbell@gmail.com
Dependencies
~17MB
~358K SLoC