9 lines
151 B
Python
Executable file
9 lines
151 B
Python
Executable file
#! /usr/bin/env python3
|
|
|
|
from logique import LogiqueEchecs
|
|
from guiTk import PlateauTk
|
|
|
|
if __name__ == '__main__':
|
|
p = PlateauTk(LogiqueEchecs())
|
|
|