feat(wip): 경매 입찰 기능

This commit is contained in:
2022-06-09 01:21:21 +09:00
parent 9d43b3e6a0
commit 9f76bc786f
6 changed files with 293 additions and 7 deletions
+9
View File
@@ -6,4 +6,13 @@ enum ResourceType: string
case gold = 'gold';
case rice = 'rice';
case inheritancePoint = 'inheritancePoint';
public function getName(): string
{
return match($this){
ResourceType::gold => '금',
ResourceType::rice => '쌀',
ResourceType::inheritancePoint => '유산 포인트',
};
}
}