10 lines
150 B
Python
10 lines
150 B
Python
from pathlib import Path
|
|
|
|
|
|
def launch_game(game_path: Path) -> None:
|
|
"""
|
|
Launch given Ballance game and wait until it quit.
|
|
"""
|
|
pass
|
|
|