YATTRS/WebApp/Die.py

6 lines
160 B
Python
Raw Normal View History

2025-04-15 21:50:10 -04:00
from random import randint
class Die:
def __init__(self, diemax: int):
self.Max = diemax
def roll(self):
return randint(1, self.Max)