Update health object to have a list of bodyparts

This commit is contained in:
Chomp 2021-12-20 10:47:18 +00:00
parent 8ccacce4b3
commit be995f1613

View File

@ -96,13 +96,13 @@ namespace Common.Models.Output
Hydration = new MinMax(100, 100);
Energy = new MinMax(100, 100);
Temperature = new MinMax(36, 40);
BodyParts = new BodyParts();
BodyParts = new List<BodyParts>();
}
public MinMax Hydration { get; set; }
public MinMax Energy { get; set; }
public MinMax Temperature { get; set; }
public BodyParts BodyParts { get; set; }
public List<BodyParts> BodyParts { get; set; }
}
public class Skills
@ -115,7 +115,6 @@ namespace Common.Models.Output
public Dictionary<string, MinMax> Common { get; set; }
}
public class Chances
{
public Chances()