18 lines
378 B
C#
18 lines
378 B
C#
using Content.Shared.Mobs;
|
|
|
|
namespace Content.Client.DamageState;
|
|
|
|
[RegisterComponent]
|
|
public sealed class DamageStateVisualsComponent : Component
|
|
{
|
|
public int? OriginalDrawDepth;
|
|
|
|
[DataField("states")] public Dictionary<MobState, Dictionary<DamageStateVisualLayers, string>> States = new();
|
|
}
|
|
|
|
public enum DamageStateVisualLayers : byte
|
|
{
|
|
Base,
|
|
BaseUnshaded,
|
|
}
|