의술의 도시 치료 커맨드 추가

This commit is contained in:
2018-10-01 03:35:07 +09:00
parent 5be39c04ef
commit 1132177e2d
9 changed files with 103 additions and 20 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
namespace sammo;
abstract class BaseWarUnitTrigger extends ObjectTrigger{
/** @var WarUnit $object */
public function __construct(WarUnit $unit){
$this->object = $unit;
}
}