quantum-space-buddies/QSB/Player/KickReason.cs

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 11:56:01 +00:00
None,
2021-08-10 13:54:23 +00:00
QSBVersionNotMatching,
2021-10-21 16:21:54 +00:00
GameVersionNotMatching,
2021-12-07 13:35:03 +00:00
GamePlatformNotMatching,
DLCNotMatching,
InEye
2021-03-09 16:43:41 +00:00
}
}