mirror of
https://github.com/xPaw/PHP-Source-Query.git
synced 2026-06-10 23:03:15 +02:00
12 lines
161 B
PHP
12 lines
161 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace xPaw\SourceQuery\Socket;
|
|
|
|
abstract class SocketType
|
|
{
|
|
public const GOLDSOURCE = 0;
|
|
public const SOURCE = 1;
|
|
}
|