10 lines
174 B
PHP
10 lines
174 B
PHP
|
<?php
|
||
|
use Ad5001\GameManager\Game;
|
||
|
use pocketmine\Player;
|
||
|
|
||
|
class Example extends Game {
|
||
|
|
||
|
public function onGameStart() {
|
||
|
$this->getLogger()->info("Game");
|
||
|
}
|
||
|
}
|