feat: g65_병사연회 구현

This commit is contained in:
2023-12-25 13:43:46 +00:00
parent 1fe55b83bd
commit 53474ab3d2
10 changed files with 204 additions and 19 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace sammo\DTO;
use LDTO\DTO;
class InstantBuff extends DTO{
public function __construct(
public readonly string $buffName,
public readonly int $untilYearMonth,
){
}
}
-2
View File
@@ -19,8 +19,6 @@ class UserAction extends \LDTO\DTO
#[Convert(MapConverter::class, [UserActionItem::class])]
public ?array $reserved,
#[Convert(ArrayConverter::class, [UserActionItem::class])]
public ?array $active,
#[Convert(MapConverter::class, ['int'])]
public ?array $nextAvailableTurn,
) {