Files
crystall-punk-14/Content.Shared/GameObjects/Components/Explosion/SharedClusterFlashComponent.cs

13 lines
244 B
C#
Raw Normal View History

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