hex_game/
lib.rs

1extern crate colored;
2extern crate petgraph;
3
4pub mod coord;
5pub mod board;
6pub mod game;
7
8#[cfg(test)]
9mod tests {
10    #[test]
11    fn it_works() {
12        assert_eq!(2 + 2, 4);
13    }
14}