vantaMOO/typeclasses/rooms.py

16 lines
213 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.
"""
from evennia.objects.objects import DefaultRoom
from .objects import ObjectParent
class Room(ObjectParent, DefaultRoom):
pass