Replace println! by todo!
This commit is contained in:
parent
c6fedb7b91
commit
3f39a3dcc3
1 changed files with 4 additions and 4 deletions
|
|
@ -223,10 +223,10 @@ impl CharacterSheet {
|
||||||
impl CharacteristicType {
|
impl CharacteristicType {
|
||||||
fn check(&self) {
|
fn check(&self) {
|
||||||
match self {
|
match self {
|
||||||
CharacteristicType::Address(_) => println!("Rules for address"),
|
CharacteristicType::Address(_) => todo!("Rules for address"),
|
||||||
CharacteristicType::Stamina(_) => println!("Rules for stamina"),
|
CharacteristicType::Stamina(_) => todo!("Rules for stamina"),
|
||||||
CharacteristicType::Luck(_) => println!("Rules for luck"),
|
CharacteristicType::Luck(_) => todo!("Rules for luck"),
|
||||||
CharacteristicType::Skill(_) => println!("Rules for skill"),
|
CharacteristicType::Skill(_) => todo!("Rules for skill"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue