using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServerOverall.Server.Updates.ServerToClient { /// /// Хранит хп, радиацию /// public class UpdatePlayerParametrs : UpdateData { public UpdatePlayerParametrs() { UpdateType = "UpdatePlayerParametrs"; isImportant = true; } public float radiatoin { get; set; } public float health { get; set; } } }