# File: TonsODice.py # Description: TonsODice Class # Author: Yirui Guo # Student ID: 2218040201 # This is my own work as defined by # the University's Academic Misconduct Policy. # from Game import Game class TonsODice: def __init__(self): pass def run(self): print('Welcome to Tons-o-Dice!\nDeveloped by Yirui Guo\nCOMP 1048 Object-Oriented Programming') game = Game() game.play_game()