refactor(blackjack): move GameState to feature folder
This commit is contained in:
parent
2d8b137e69
commit
defe26d0c1
5 changed files with 4 additions and 4 deletions
|
@ -0,0 +1,6 @@
|
|||
export enum GameState {
|
||||
PLAYER_WON = 'PLAYER_WON',
|
||||
IN_PROGRESS = 'IN_PROGRESS',
|
||||
PLAYER_LOST = 'PLAYER_LOST',
|
||||
DRAW = 'DRAW',
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue