Update README.md

This commit is contained in:
Ad5001 2016-07-31 14:10:20 +03:00 committed by GitHub
父節點 640ad2949e
當前提交 ab17e5be2a
共有 1 個文件被更改,包括 8 次插入8 次删除

查看文件

@ -5,8 +5,7 @@ I made this for me at start but feel free to use it to write your own minigame !
### How to make a game:
To make a game base, create a new file called "<YOUR_GAME_NAME>.php". Inside it, add a
``
<?php
``<?php
use Ad5001\GameManager\Game;
use pocketmine\Player;
@ -23,16 +22,17 @@ public function onGameStop() { // When you stop the game.
}
public function getName() : string {
return "<YOUR_GAME_NAME>";
}
public function getName() : string {
return "<YOUR_GAME_NAME>";
}
public function getMaxPlayers() : int { // Return the max of the players
return <NUMBER OF PLAYERS MAX>;
}
// Write in progress :)
}
// Write in progress :)
}
``