feat: create window client app
This commit is contained in:
22
Client/Domain/ValueObjects/PermanentStats.cs
Normal file
22
Client/Domain/ValueObjects/PermanentStats.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user