1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Resources are stored here for easy access via `crate::resources::ResourceName`.
//! Systems for the resources may be here or in the specific system that needs them.
//!
//! All resources can be added with default values to the game using the `ElementalistResourcesPlugin`.

mod cleanup;
mod cursor_position;
mod fonts;
mod plugin;

pub mod buttons;
pub mod movement;
pub mod style_prefab;

pub use plugin::ElementalistResourcesPlugin;