15 lines
199 B
C#
15 lines
199 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ReallifeGamemode.Server.Types
|
|
{
|
|
public enum DisconnectReason
|
|
{
|
|
Unknown,
|
|
Quit,
|
|
Timeout,
|
|
Kick
|
|
}
|
|
}
|