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 {
|
||||
fn check(&self) {
|
||||
match self {
|
||||
CharacteristicType::Address(_) => println!("Rules for address"),
|
||||
CharacteristicType::Stamina(_) => println!("Rules for stamina"),
|
||||
CharacteristicType::Luck(_) => println!("Rules for luck"),
|
||||
CharacteristicType::Skill(_) => println!("Rules for skill"),
|
||||
CharacteristicType::Address(_) => todo!("Rules for address"),
|
||||
CharacteristicType::Stamina(_) => todo!("Rules for stamina"),
|
||||
CharacteristicType::Luck(_) => todo!("Rules for luck"),
|
||||
CharacteristicType::Skill(_) => todo!("Rules for skill"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue