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
32
33
34
35
36
37
38
39
40
41
42
//#![feature(associated_type_bounds)]
//#![feature(map_first_last)]
//! The rgrow (FIXME: we need a better name!) tileset simulator. This generally uses the algorithms of the venerable Xgrow.
extern crate ndarray;
extern crate phf;
pub mod utils;
pub mod units;
pub mod tileset;
pub mod parser_xgrow;
pub mod colors;
pub mod base;
pub mod canvas;
pub mod ffs;
pub mod rbffs;
pub mod state;
pub mod system;
pub mod ratestore;
pub mod models;
pub mod painter;
pub mod ui;
#[cfg(feature = "gui")]
pub mod gui;
#[cfg(feature = "python")]
pub mod python;
#[cfg(feature = "python")]
pub mod pytileset;
// pub mod newsystem;