1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
extern crate crossterm;
extern crate dirs;
#[cfg(feature = "random")]
extern crate rand;
extern crate ron;
#[macro_use]
extern crate serde;
extern crate specs;

mod components;
mod geo;
mod helpers;
mod input;
mod pong;
mod resources;
mod round_down;
mod settings;
#[cfg(feature = "style")]
mod style;
mod systems;

pub fn run() {
    pong::run();
}