semeion 0.9.1

A generic 2D environment simulator
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod cell;

pub use cell::*;

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