13 lines
170 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,
2021-12-07 13:35:03 +00:00
GamePlatformNotMatching,
DLCNotMatching,
InEye
2021-03-09 16:43:41 +00:00
}
}