Files
tbd-station-14/Content.Shared/Explosion/SharedClusterFlashComponent.cs
2021-06-09 22:19:39 +02:00

13 lines
221 B
C#

#nullable enable
using System;
using Robust.Shared.Serialization;
namespace Content.Shared.Explosion
{
[Serializable, NetSerializable]
public enum ClusterFlashVisuals : byte
{
GrenadesCounter
}
}