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