add hangman stub

This commit is contained in:
Ben Harris 2017-04-28 19:31:09 -04:00
parent e05fded0a6
commit 5581dcdd8c
1 changed files with 23 additions and 0 deletions

23
src/Commands/Hangman.php Normal file
View File

@ -0,0 +1,23 @@
<?php
namespace BenBot\Commands;
use BenBot\Utils;
class Hangman
{
private static $bot;
public static function register(&$that)
{
self::$bot = $that;
echo __CLASS__ . " registered", PHP_EOL;
}
public static function startGame($msg, $args)
{
}
}