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.
|
from cinput import ControlInput
|
|
from graphics import Graphics
|
|
from .game import ChessGame
|
|
|
|
def execute(cinput: ControlInput, graphics: Graphics, _):
|
|
ChessGame(cinput, graphics).run()
|