Nap.py 140 B

1234567891011
  1. from Base import Base
  2. class Nap(Base):
  3. slot = None
  4. link = None
  5. def __init__(self):
  6. Base.__init__(self)