16 lines
245 B
C#
16 lines
245 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Chat.TypingIndicator;
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum TypingIndicatorVisuals : byte
|
|
{
|
|
State
|
|
}
|
|
|
|
[Serializable]
|
|
public enum TypingIndicatorLayers : byte
|
|
{
|
|
Base
|
|
}
|