mirror of
https://github.com/sigmasternchen/x86-64-wordle
synced 2025-03-16 00:29:04 +00:00
8 lines
No EOL
124 B
JavaScript
8 lines
No EOL
124 B
JavaScript
import {makeEnum} from "../utils";
|
|
|
|
export const GameState = makeEnum([
|
|
"Setup",
|
|
"Active",
|
|
"Won",
|
|
"Lost"
|
|
]); |