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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//! # Elementalist Shared Game Library
//!
//! This library contains all the shared game logic for the Elementalist game.
//!
//! ## Fully Generic Components
//!
//! These components are fully generic and can be used in any game. (They are the
//! base components for the Elementalist game.)
//!
//! * [`Attribute`] - An attribute has a current and max value. (e.g. health, mana, etc.)
//! * [`Stat`] - Contains a floating point value that can be used to represent a stat.
//! * [`StatBonus`] - Contains a percentage value with calculations for adding or removing
//! points or percentages from the value. (e.g. +10% health, -5% damage, etc.)
//! * [`Volume`] - Volume component with a "muted" flag.
//! * [`Xp`] - Experience component with a level and experience points, uses a custom
//! experience curve.
//!
//! ## Elementalist Game Components/Resources/Events/Enums
//!
//! The remaining items are specific to the Elementalist game.
//!

pub mod colors;
pub mod data_loader;
pub mod enums;
pub mod events;
pub mod font_resource;
pub mod math;
pub mod menu_helper;
pub mod progress_bar;
pub mod settings;
pub mod state;

mod acceleration;
mod attribute;
mod biome;
mod camera_scale;
mod cursor_position;
mod depth_2d;
mod experience;
mod health;
mod mana;
mod markers_to_biomes;
mod movement_bundle;
mod noise;
mod particle;
mod physics;
mod realm_data;
mod schedule;
mod shared_traits;
mod simple_object;
mod skill;
mod spell_bundle;
mod spell_choices;
mod spell_data;
mod spell_lifetime;
mod stat;
mod stat_bonus;
mod stat_bundle;
mod stat_effect;
mod tileset;
mod volume;

pub use acceleration::Acceleration;
pub use attribute::Attribute;
pub use biome::BiomeData;
pub use camera_scale::CameraScaleLevel;
pub use cursor_position::CursorPosition;
pub use depth_2d::{Layer, LayerPlugin};
pub use experience::Xp;
pub use health::Health;
pub use mana::Mana;
pub use markers_to_biomes::MarkersToBiomes;
pub use movement_bundle::MovementBundle;
pub use noise::GeneratedMaps;
pub use noise::GenerationSeed;
pub use noise::NoisePlugin;
pub use physics::PhysicsPlugin;
pub use realm_data::Realm;
pub use schedule::*;
pub use shared_traits::InternalId;
pub use simple_object::SimpleObject;
pub use skill::Skills;
pub use spell_bundle::SpellBundle;
pub use spell_choices::SpellChoices;
pub use spell_data::SpellData;
pub use spell_lifetime::SpellLifetime;
pub use stat::Stat;
pub use stat_bonus::StatBonus;
pub use stat_bundle::StatBundle;
pub use stat_effect::StatEffect;
pub use tileset::Tileset;
pub use volume::Volume;