mirror of
https://github.com/evennia/evennia.git
synced 2026-03-23 00:06:30 +01:00
As part of this work, I have also written full listings of all available properties on Typeclassed objects (including those inherited in various ways). Should hopefully make things easier to find. One can of course still import things directly from src/ as before. But this is a first step towards removing the "base" objects in game/gamesrc and instead making those accessible through the core API.
12 lines
333 B
Python
12 lines
333 B
Python
"""
|
|
Makes it easier to import by grouping all relevant things already at this level.
|
|
|
|
You can henceforth import most things directly from src.objects
|
|
Also, the initiated object manager is available as src.objects.manager.
|
|
|
|
"""
|
|
|
|
from src.objects.objects import *
|
|
from src.objects.models import ObjectDB
|
|
|
|
manager = ObjectDB.objects
|