아이템 int->string 반영

This commit is contained in:
2019-06-10 02:20:48 +09:00
parent bb7e93ac2d
commit d4b7cdc97c
6 changed files with 120 additions and 135 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
namespace sammo\ActionItem;
use \sammo\iAction;
use \sammo\General;
class None extends \sammo\BaseItem{
protected static $id = 0;
protected static $name = '-';
protected static $info = null;
protected static $cost = 0;
protected static $consumable = false;
protected static $buyable = true;
}