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
//! Enums used in the game library and Elementalist game.

pub mod biome;

mod cast_category;
mod cast_slot;
mod cast_type;
mod game_systems;
mod magic;
mod particle_attachment;
mod skill;
mod spell_collision;
mod spell_target;
mod stat;

pub use cast_category::CastCategory;
pub use cast_slot::CastSlot;
pub use cast_type::CastType;
pub use game_systems::GameSystem;
pub use magic::MagicType;
pub use particle_attachment::ParticleAttachment;
pub use skill::Skill;
pub use spell_collision::SpellCollision;
pub use spell_target::SpellTarget;
pub use stat::StatEnum;