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
/*!
# RPG Stat library
[](https://docs.rs/rpg-stat)
[](https://crates.io/crates/rpg-stat)
# Stats
The Stats are broken down into categories `Basic`, `Normal`, and `Advanced`
This allows you to run:
```rs:no_run
use rpgstat::stats::Basic as Stats
// more stuff
fn my_fun () {
    let b = Stats::default();
    // whatever
}
```
# Classes
The Classes are broken down into categories `Basic`, `Normal`, and `Advanced`
This allows you to run:
```rs:no_run
use rpgstat::class::Basic as Class
// more stuff
fn my_fun () {
    let b = Class::default();
    // whatever
}
```
# Creatures
 This contains all manner of creatures.  We have `Animal` creatures, `Hero` creatures, and more to come!
*/
pub mod stats;
pub mod class;
pub mod creature;