. */ namespace GameQ\Protocols; /** * Class Atlas * * @package GameQ\Protocols * @author Wilson Jesus <> */ class Atlas extends Source { /** * String name of this protocol class * * @type string */ protected $name = 'atlas'; /** * Longer string name of this protocol class * * @type string */ protected $name_long = "Atlas"; /** * query_port = client_port + 51800 * 57561 = 5761 + 51800 * * this is the default value for the stock game server, both ports * can be independently changed from the stock ones, * making the port_diff logic useless. * * @type int */ protected $port_diff = 51800; }