UNPKG

@rbxts/tic-tac-toe

Version:

Modular tic-tac-toe without dependencies, because why not.

9 lines (8 loc) 243 B
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 = "" }