Initial commit

This commit is contained in:
simon
2017-11-22 19:13:00 -05:00
commit e3ab67e95c
133 changed files with 202341 additions and 0 deletions

32
include/ServerInfo.php Normal file
View File

@@ -0,0 +1,32 @@
<?php
class ServerInfo
{
public $token;
public $username;
public $address;
public $tickLength;
public $serverName;
/**
* ServerInfo constructor.
* @param $token
* @param $username
*/
public function __construct($token, $username)
{
$this->token = $token;
$this->username = $username;
$this->address = MAR_ADDRESS;
$this->serverName = MAR_SERVER_NAME;
$this->tickLength = MAR_TICK_LENGTH;
}
}