Constants.cs 232 B

123456789
  1. namespace MafiaTelegramBot.Resources
  2. {
  3. public static class Constants
  4. {
  5. public const int PLAYER_LIMITS_MIN = 1;
  6. public const int PLAYER_LIMITS_MAX = 16;
  7. public const int MAX_SHOWING_ROOMS = 10;
  8. }
  9. }