10 lines
116 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,
GameVersionNotMatching
2021-03-09 16:43:41 +00:00
}
}