14 lines
169 B
PHP
14 lines
169 B
PHP
<?php
|
|
|
|
namespace sammo;
|
|
|
|
/** 서버 내 변수 모음 */
|
|
class ServerDefaultEnv
|
|
{
|
|
private function __construct()
|
|
{
|
|
}
|
|
|
|
static int $maxGeneralsPerMinute = 1000;
|
|
}
|