semeion 0.9.1

A generic 2D environment simulator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod grid;
pub mod rect;

pub use grid::*;
pub use rect::*;

/// The entities Kinds.
/// The order of the kind determines the entities drawing order.
#[derive(PartialEq, PartialOrd, Eq, Ord)]
pub enum Kind {
    Grid,
    Rect,
}