_Setting, _String, _Time 클래스 재 명명

- autoload로 변환
This commit is contained in:
2018-03-24 21:28:12 +09:00
parent a3f83d1e95
commit 002f9ba6cf
32 changed files with 109 additions and 360 deletions
+4 -4
View File
@@ -715,10 +715,10 @@ function command_Other($connect, $turn, $commandtype) {
function EncodeCommand($fourth, $third, $double, $command) {
$str = _String::Fill2($fourth, 4, "0");
$str .= _String::Fill2($third, 4, "0");
$str .= _String::Fill2($double, 4, "0");
$str .= _String::Fill2($command, 2, "0");
$str = StringUtil::Fill2($fourth, 4, "0");
$str .= StringUtil::Fill2($third, 4, "0");
$str .= StringUtil::Fill2($double, 4, "0");
$str .= StringUtil::Fill2($command, 2, "0");
return $str;
}