YATTRS/WebApp/Die.py
2025-04-15 21:50:10 -04:00

6 lines
160 B
Python

from random import randint
class Die:
def __init__(self, diemax: int):
self.Max = diemax
def roll(self):
return randint(1, self.Max)