feat: add skills

This commit is contained in:
k0t9i
2023-02-01 00:30:20 +04:00
parent 823241ef32
commit 32fdef9b1c
13 changed files with 310 additions and 14 deletions

View File

@@ -7,11 +7,6 @@ namespace Client.Domain.Entities
{
public class Hero : ObservableObject, EntityInterface, CreatureInterface
{
private FullName fullName;
private Phenotype phenotype;
private CreatureInterface? target;
private uint targetId;
public uint Id { get; set; }
public Transform Transform { get; set; }
public VitalStats VitalStats { get; set; }
@@ -96,5 +91,10 @@ namespace Client.Domain.Entities
OnPropertyChanged("Name");
}
}
private FullName fullName;
private Phenotype phenotype;
private CreatureInterface? target;
private uint targetId;
}
}