Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/othello/__init__.py
blob: cb42204cb436b23eee0360ed6be870f241e1d0e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#from game import Game
#from player import *
#from board import NEGRO, BLANCO
#
#
#__all__ = ["ai", "board", "game", "gui", "utils", "player", "referee"]
#
#if __name__ == "__main__":
#    #Creo los jugadores que van a competir en el juego
#    jugador1 = Player(BLANCO,HUMANO)
#    jugador2 = Player(NEGRO,PC)
#    juego = Game(jugador1,jugador2)
#    juego.set_turn(jugador1)
#    juego.play()