rusty_uma_extractor 0.1.0

A set of useful utility modules for applications developed to be used with the game Umamusume: Pretty Derby.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Master Database Data Extractor
//! 
//! This module contains data structures and functions which access the `master.mdb` database file to allow extraction of various structured
//! data objects commonly leveraged in applications designed for _Umamusume: Pretty Derby_ for use in veteran roster building and similar functions.


pub use self::data_structures::CharacterCard;
pub use self::data_structures::SupportCard;
pub use self::data_structures::Factor;
pub use self::data_structures::Skill;
pub use self::data_structures::Race;

/// Module for returning queried data from database
pub mod database;
/// Module containing the various data structures
pub mod data_structures;