implermented key display
This commit is contained in:
parent
74e1b25fcf
commit
3218253076
14 changed files with 375 additions and 19 deletions
12
src/php/Entities/Games/KeyState.php
Normal file
12
src/php/Entities/Games/KeyState.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace GamesShop\Entities\Games;
|
||||
|
||||
enum KeyState: int
|
||||
{
|
||||
case AVAILABLE = 1;
|
||||
case UNKNOWN = 0;
|
||||
case RESERVED_FOR_GIFT = -1;
|
||||
case CLAIMED = -10;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue