6 lines
117 B
Python
6 lines
117 B
Python
|
|
class Tile(object):
|
|
def __init__(self, typ, roll_val):
|
|
self.type = typ
|
|
self.roll_val = roll_val
|