Files
ClubPenguinClient/MareSynchronos/Services/Events/EventSeverity.cs
rootdarkarchon e8ae2a6152 add events
2025-02-09 16:02:34 +00:00

9 lines
130 B
C#

namespace MareSynchronos.Services.Events;
public enum EventSeverity
{
Informational = 0,
Warning = 1,
Error = 2
}