diff --git a/src/lib.rs b/src/lib.rs index 86e7a2c..0c313dc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -39,7 +39,7 @@ pub trait Fighter { fn power (&self) -> u8; } -pub struct Parser { +struct Parser { fighter_type: &'static str, document: Document } @@ -70,7 +70,7 @@ impl Parser { } } -pub struct Skills { +struct Skills { map: BTreeMap } @@ -80,7 +80,7 @@ impl Skills { } } -pub struct Skill { +struct Skill { score: String }