feat: create window client app

This commit is contained in:
k0t9i
2023-01-28 14:54:49 +04:00
parent 1d77bceeff
commit 42d594bbbb
43 changed files with 1142 additions and 98 deletions

View 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;
}
}
}