30 lines
627 B
PHP
30 lines
627 B
PHP
<?php
|
|
# Date: 23.02.2022 (1:49)
|
|
namespace Battles;
|
|
|
|
trait Users
|
|
{
|
|
protected int $id = 0;
|
|
protected string $login = '';
|
|
protected int $level = 0;
|
|
protected ?int $align = null;
|
|
protected ?string $clan = null;
|
|
protected ?int $admin = null;
|
|
protected int $room = 0;
|
|
protected int $block = 0;
|
|
protected string $shadow = '';
|
|
//userprofile
|
|
private string $pass = '';
|
|
private string $email = '';
|
|
private string $realname = '';
|
|
private string $borndate = '';
|
|
private string $info = '';
|
|
private string $ip = '';
|
|
|
|
private ?int $money = null;
|
|
|
|
private bool $fuk;
|
|
|
|
|
|
}
|