-- Compiled with roblox-ts v1.2.7 --[[ * * The base class for a TicTacToe player. ]] local TicTacToePlayer do TicTacToePlayer = {} function TicTacToePlayer:constructor(name) self.name = name end function TicTacToePlayer:getName() return self.name end end return { TicTacToePlayer = TicTacToePlayer, }