summaryrefslogtreecommitdiff
path: root/2018-tower-defence/src/lib.rs
blob: 6cd87304979144619e040990958378c70161f251 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
extern crate serde;
extern crate serde_json;

#[macro_use]
extern crate serde_derive;

extern crate rand;
extern crate time;

extern crate rayon;

extern crate arrayvec;

#[macro_use]
#[cfg(feature = "heuristic-random")]
extern crate lazy_static;

pub mod input;
pub mod engine;
pub mod strategy;