This commit is contained in:
2022-06-09 01:21:21 +09:00
parent 837b936f0d
commit b7f8655109
5 changed files with 131 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
namespace sammo\Enums;
enum ResourceType: string
{
case gold = 'gold';
case rice = 'rice';
case inheritancePoint = 'inheritancePoint';
}