19 lines
446 B
Python
19 lines
446 B
Python
# File: TonsODice.py
|
|
# Description: TonsODice Class
|
|
# Author: ZiTing Wang
|
|
# Student ID: 2218040103
|
|
# This is my own work as defined by
|
|
# the University's Academic Misconduct Policy.
|
|
#
|
|
from GameBase import GameBase
|
|
|
|
|
|
class TonsODice:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def run(self):
|
|
print('Welcome to Tons-o-Dice!\nDeveloped by ZiTing Wang\nCOMP 1048 Object-Oriented Programming')
|
|
game = GameBase()
|
|
game.playGame()
|