Replace println! by todo!

This commit is contained in:
Pcornat 2026-02-12 20:38:27 +01:00
commit 3f39a3dcc3
Signed by: Pcornat
GPG key ID: E0326CC678A00BDD

View file

@ -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"),
} }
} }
} }