Update README.md

このコミットが含まれているのは:
Ad5001 2016-07-31 14:10:20 +03:00 committed by GitHub
コミット 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 :)
}
``