Skip to content

Instantly share code, notes, and snippets.

View Filmaluco's full-sized avatar
:octocat:
On vacation

Filipe Ramos Alves Filmaluco

:octocat:
On vacation
View GitHub Profile
@Filmaluco
Filmaluco / TicTacToeModel.kt
Created October 19, 2023 22:42
Tic Tac Toe
class TicTacToeModel {
enum class Players {
None, P1, P2
}
private lateinit var board: Array<Array<Players>>
private var _winsP1 = 0
private var _winsP2 = 0
private var _currentPlayer = Players.None
private var _ctrl = 9