using Robust.Shared.Interfaces.GameObjects; namespace Content.Shared.GameObjects.Components.Damage { // TODO: Fix summary /// /// Defines what state an with a /// is in. /// Not all states must be supported - for instance, the /// only supports /// and , /// as inanimate objects don't go into crit. /// public enum DamageState { Alive, Critical, Dead } }