Files
crystall-punk-14/Content.Shared/Chat/TypingIndicator/TypingIndicatorState.cs

12 lines
197 B
C#
Raw Normal View History

2025-05-06 19:49:42 +02:00
using Robust.Shared.Serialization;
namespace Content.Shared.Chat.TypingIndicator;
[Serializable, NetSerializable]
public enum TypingIndicatorState
{
None = 0,
Idle = 1,
Typing = 2,
}