1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! Data loading module
//!
//! This module contains all of the data loading code for the game. This includes
//! loading the game data files and sending events with the loaded data.

pub mod events;
pub mod storage;

mod header_def;
mod loader;
mod particles;
mod plugin;
mod realms;
mod simple_objects;
mod spells;
mod tilesets;

/// The directory where the game data files are stored
pub const DATA_FILE_DIR: &str = "game_data";

pub use header_def::*;
pub use loader::*;
#[allow(clippy::module_name_repetitions)]
pub use plugin::DataLoaderPlugin;