11 lines
143 B
C#
Raw Normal View History

2021-03-09 16:44:14 +00:00
namespace QSB.Player
2021-03-09 16:43:41 +00:00
{
public enum KickReason
{
2021-08-28 12:56:01 +01:00
None,
2021-08-10 14:54:23 +01:00
QSBVersionNotMatching,
2021-10-21 17:21:54 +01:00
GameVersionNotMatching,
GamePlatformNotMatching
2021-03-09 16:43:41 +00:00
}
}