7 lines
198 B
C#
7 lines
198 B
C#
using RPGLibrary.Abstraction.Character;
|
|
|
|
namespace RPGLibrary.Implementation
|
|
{
|
|
public record StrengthAttackData(ICharacter Source, StrengthAttribute Strength) : AttackData(Source, Strength);
|
|
|
|
} |