L2Bot2.0/Client/Domain/ValueObjects/PermanentStats.cs
2023-01-28 14:54:49 +04:00

23 lines
567 B
C#

namespace Client.Domain.ValueObjects
{
public class PermanentStats
{
public uint Str { get; set; }
public uint Dex { get; set; }
public uint Con { get; set; }
public uint Int { get; set; }
public uint Men { get; set; }
public uint Wit { get; set; }
public PermanentStats(uint str, uint dex, uint con, uint @int, uint men, uint wit)
{
Str = str;
Dex = dex;
Con = con;
Int = @int;
Men = men;
Wit = wit;
}
}
}