7 lines
238 B
Python
7 lines
238 B
Python
"""
|
|
This sub-package defines the basic in-game "Object". All in-game
|
|
objects inherit from classes in this package.
|
|
|
|
"""
|
|
from __future__ import absolute_import
|
|
from .objects import DefaultObject, DefaultRoom, DefaultExit, DefaultCharacter
|