mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-14 19:29:53 +01:00
18 lines
386 B
C#
18 lines
386 B
C#
using Content.Shared.Mobs;
|
|
|
|
namespace Content.Client.DamageState;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class DamageStateVisualsComponent : Component
|
|
{
|
|
public int? OriginalDrawDepth;
|
|
|
|
[DataField("states")] public Dictionary<MobState, Dictionary<DamageStateVisualLayers, string>> States = new();
|
|
}
|
|
|
|
public enum DamageStateVisualLayers : byte
|
|
{
|
|
Base,
|
|
BaseUnshaded,
|
|
}
|