Files
core/hwe/sammo/Command/Nation/휴식.php
T
2018-09-30 03:04:20 +09:00

24 lines
403 B
PHP

<?php
namespace sammo\Command\Nation;
use \sammo\Command;
use \sammo\Util;
use \sammo\JosaUtil;
class 휴식 extends NationCommand{
protected function init(){
//아무것도 하지 않음
}
protected function argTest():bool{
return true;
}
public function getCost():array{
return [0, 0];
}
public function run():bool{
return true;
}
}