1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//!
//! # GG
//!
//! A simple and straight to the point Game Developement Library
//!

#![deny(missing_docs)]

#![feature(associated_type_defaults)]

extern crate glium;
extern crate time;
extern crate vec_map;

/// The event module
/// TODO: Expand
pub mod event;

/// The Scenes module
/// TODO: Expand
pub mod scene;

/// Commonly used traits
/// TODO: Expand
pub mod traits;

/// Global game related
/// TODO: Expand
pub mod game;

pub use game::Game;