Fix more typing

This commit is contained in:
2023-02-28 19:51:37 -08:00
parent 8391a47e4e
commit fa305f9852
4 changed files with 12 additions and 15 deletions

View File

@@ -2,7 +2,6 @@
namespace RPGLibrary.Implementation
{
public record StrengthAttackData(ICharacter Source, StrengthAttribute Strength)
: AttackData(Source, Strength);
public record StrengthAttackData(ICharacter Source, StrengthAttribute Strength) : AttackData(Source, Strength);
}