rugra 0.1.0

Small and simple graphics library.
Documentation
//! Rugra is a ultra minimal graphics engine for Rust.

#![allow(dead_code)]

extern crate sfml;

/// The prelude which reexports all the basic functionality Rugra contains.
pub mod prelude;
/// Windows
pub mod window;
/// Circles
pub mod circle;
/// Rectangles
pub mod rect;
/// Sprites
pub mod sprite;
/// Labels
pub mod label;
/// Textures
pub mod texture;
/// Fonts
pub mod font;
/// Sound
pub mod sound;
/// Keys
pub mod key;