about summary refs log tree commit diff
path: root/src/entities/mod.rs
blob: ed83f2f462db0b023627c9c1cd446c3daef45d26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[macro_use]
pub mod entity;
pub mod character;
pub mod creature;
pub mod entity_char;
pub mod raws;

pub use character::Character;
pub use creature::Creature;
pub use entity::{Entity, Identified};
pub use entity_char::EntityChar;
pub use raws::raw;

pub type EntityID = u32;