코드 중간 반영

This commit is contained in:
2018-08-18 20:45:59 +09:00
parent 4bc78dba1e
commit d76d1f913a
5 changed files with 123 additions and 36 deletions
+4
View File
@@ -58,6 +58,10 @@ class GameUnitDetail{
$this->info = $info;
}
public function getShortName():string{
return StringUtil::subStringForWidth($this->name, 0, 4);
}
public function costWithTech(int $tech, int $crew=100):float{
return $this->cost * getTechCost($tech) * $crew / 100;
}