19 lines
389 B
PHP
19 lines
389 B
PHP
<?php
|
|
namespace sammo\ActionSpecialDomestic;
|
|
use \sammo\iAction;
|
|
use \sammo\General;
|
|
use \sammo\SpecialityHelper;
|
|
|
|
class None extends \sammo\BaseSpecial{
|
|
|
|
protected $id = 0;
|
|
protected $name = '-';
|
|
protected $info = '';
|
|
|
|
static $selectWeightType = SpecialityHelper::WEIGHT_NORM;
|
|
static $selectWeight = 0;
|
|
static $type = [
|
|
SpecialityHelper::DISABLED
|
|
];
|
|
|
|
} |