-- Compiled with roblox-ts v1.2.7 local TicTacToeState do local _inverse = {} TicTacToeState = setmetatable({}, { __index = _inverse, }) TicTacToeState.X_WON = 0 _inverse[0] = "X_WON" TicTacToeState.O_WON = 1 _inverse[1] = "O_WON" TicTacToeState.DRAW = 2 _inverse[2] = "DRAW" TicTacToeState.IN_PROGRESS = 3 _inverse[3] = "IN_PROGRESS" TicTacToeState.CANCELLED = 4 _inverse[4] = "CANCELLED" end return { TicTacToeState = TicTacToeState, }