18 lines
430 B
Python
18 lines
430 B
Python
# 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() |