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.
zeropod/plugin/chess/__init__.py

8 lines
220 B
Python
Raw Normal View History

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-30 22:06:56 -05:00
def execute(cinput: ControlInput, graphics: Graphics, arg: str):
if arg == "game":
ChessGame(cinput, graphics).run()