use the correct structure this time

This commit is contained in:
jake 2022-08-02 12:00:49 -06:00
parent 1f5e94ccfb
commit 91a92870dc

View File

@ -1,9 +1,9 @@
use std::fs::File;
use serde_json::Value;
use crate::entity::character::CharacterClass;
use std::cell::LazyCell;
use std::sync::LazyLock;
pub const LEVEL_TABLE: LazyCell<CharacterLevelTable> = LazyCell::new(|| CharacterLevelTable::default());
pub static LEVEL_TABLE: LazyLock<CharacterLevelTable> = LazyLock::new(CharacterLevelTable::default);
#[derive(Default, Copy, Clone, Debug, PartialEq, Eq)]
pub struct CharacterStats {