특기 획득 구조 변경

This commit is contained in:
2020-04-26 22:31:49 +09:00
parent 73aa2bd158
commit 5aea034a17
50 changed files with 545 additions and 543 deletions
+19
View File
@@ -0,0 +1,19 @@
<?php
namespace sammo;
use \sammo\iAction;
use \sammo\General;
abstract class BaseSpecial implements iAction{
use \sammo\DefaultAction;
protected $id = 0;
protected $name = '-';
protected $info = '';
/** @var int */
static $selectWeightType;
/** @var int */
static $selectWeight;
/** @var int[] */
static $type;
}