Add project files.

This commit is contained in:
2023-02-28 19:15:03 -08:00
parent 24cdd62c8a
commit c13f80e2ab
24 changed files with 459 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
using RPGLibrary.Abstraction.Character;
namespace RPGLibrary.Implementation
{
public record StrengthAttackData(ICharacter Source, StrengthAttribute Strength)
: AttackData(Source, Strength);
}