UNPKG
@rbxts/tic-tac-toe
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
Modular tic-tac-toe without dependencies, because why not.
zyrakia/tic-tac-toe
@rbxts/tic-tac-toe
/
out
/
enum
/
TicTacToeSymbol.d.ts
9 lines
(8 loc)
•
243 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
declare
enum
TicTacToeSymbol
{
/** The symbol representing an X owned cell. */
X =
"X"
,
/** The symbol representing an O owned cell. */
O =
"O"
,
/** The symbol representing an empty cell. */
EMPTY =
""
}