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

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