Fix typing

This commit is contained in:
2023-02-28 19:40:12 -08:00
parent c13f80e2ab
commit 8391a47e4e
5 changed files with 17 additions and 20 deletions

View File

@@ -25,7 +25,7 @@ namespace RPGLibrary.Implementation
return $"{HP}, {Strength}, {Defense}";
}
public ICharacter With(HP hp) => new Character(Name, hp, Strength, Defense);
public Character With(HP hp) => new Character(Name, hp, Strength, Defense);
}
}