MadelineProto/classes/user.php

17 lines
352 B
PHP
Raw Normal View History

2016-06-23 23:51:08 +02:00
<?php
2016-07-14 15:15:50 +02:00
set_include_path(get_include_path().PATH_SEPARATOR.dirname(__FILE__).DIRECTORY_SEPARATOR.'libpy2php');
require_once 'libpy2php.php';
class user
{
2016-06-23 23:51:08 +02:00
public $me = null;
// current connected user
public $friends = [];
2016-07-14 15:15:50 +02:00
2016-06-23 23:51:08 +02:00
// current connected user's friends
2016-07-14 15:15:50 +02:00
public function __construct($uid)
{
2016-06-23 23:51:08 +02:00
$this->uid = $uid;
}
}