Reformat CRLF -> LF

This commit is contained in:
Pcornat 2022-10-30 13:16:10 +01:00
parent 8886c73316
commit b657e32cac
Signed by: Pcornat
GPG Key ID: 2F3932FF46D9ECA0

View File

@ -17,7 +17,8 @@ enum CharacteristicType {
#[derive(Debug)] #[derive(Debug)]
pub struct CharacterSheet { pub struct CharacterSheet {
character_class: Classe, character_class: Classe,
name: String, /// Field to write the personality/
pub character: String,
address: Characteristic, address: Characteristic,
stamina: Characteristic, stamina: Characteristic,
luck: Characteristic, luck: Characteristic,
@ -42,7 +43,7 @@ impl Default for CharacterSheet {
fn default() -> Self { fn default() -> Self {
Self { Self {
character_class: Classe::Warrior, character_class: Classe::Warrior,
name: "Billy".to_string(), character: "Billy".to_string(),
address: Characteristic { address: Characteristic {
characteristic_type: CharacteristicType::Address, characteristic_type: CharacteristicType::Address,
base: 0, base: 0,