Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
19 lines
337 B
C#
19 lines
337 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Mobs
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum DamageStateVisuals
|
|
{
|
|
State
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum DamageStateVisualData
|
|
{
|
|
Normal,
|
|
Crit,
|
|
Dead
|
|
}
|
|
} |