5 lines
107 B
Python
5 lines
107 B
Python
from .enums import PillType
|
|
|
|
class Pill:
|
|
def __init__(self, typ: PillType):
|
|
self.pilltype = typ |