This repository has been archived on 2022-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
2022-04-25 14:49:42 -05:00
|
|
|
from cinput import ControlInput
|
2022-04-24 10:07:39 -05:00
|
|
|
from graphics import Graphics
|
2022-04-25 14:49:42 -05:00
|
|
|
from .game import ChessGame
|
2022-04-24 15:43:34 -05:00
|
|
|
|
2022-04-24 10:07:39 -05:00
|
|
|
def execute(cinput: ControlInput, graphics: Graphics, _):
|
2022-04-25 14:49:42 -05:00
|
|
|
ChessGame(cinput, graphics).run()
|