make the parser stuff private for now

This commit is contained in:
Adrian Malacoda 2017-02-19 01:48:04 -06:00
parent b4bceda1c0
commit 50e04d5f69

View File

@ -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<String, Skill>
}
@ -80,7 +80,7 @@ impl Skills {
}
}
pub struct Skill {
struct Skill {
score: String
}