상업투자 구현 중

This commit is contained in:
2018-09-13 01:43:44 +09:00
parent d981265f12
commit b35b231d1a
4 changed files with 169 additions and 9 deletions
+27 -2
View File
@@ -1,9 +1,34 @@
<?php
namespace sammo\Command;
use \sammo\Util;
use \sammo\JosaUtil;
use \sammo\{
Util, JosaUtil,
General,
ActionLogger
};
use \sammo\Constraint\Constraint;
class che_상업투자 extends BaseCommand{
static $cityKey = 'comm';
static $actionName = '상업 투자';
protected function init(){
$general = $this->generalObj;
$this->setCity();
$this->setNation();
$develCost = $this->env['develcost'];
$nationTypeObj = $general->getNationTypeObj();
$generalLevelObj = $general->getGeneralLevelObj();
$this->constraints=[
];
}
}