vantaMOO/typeclasses/rooms.py

12 lines
165 B
Python
Raw Normal View History

2023-01-06 04:50:33 +01:00
"""
Room
Rooms are simple containers that has no location of their own.
"""
2023-01-09 04:03:29 +01:00
from lib.rpsystem import ContribRPRoom
2023-01-06 04:50:33 +01:00
# rpsystem
class Room(ContribRPRoom):
2023-01-06 04:50:33 +01:00
pass