about summary refs log tree commit diff
path: root/src/entities/mod.rs
blob: 3fe84c76f8ef2351e09a50444e55fc0798976278 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#[macro_use]
pub mod entity;
#[macro_use]
pub mod util;
pub mod character;
pub mod creature;
pub mod entity_char;
pub mod environment;
pub mod item;
pub mod raw_types;
pub mod raws;

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

pub type EntityID = u32;