mirror of
https://github.com/evennia/evennia.git
synced 2026-03-18 22: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
332 B
Python
12 lines
332 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.scripts
|
|
Also, the initiated object manager is available as src.scripts.manager.
|
|
|
|
"""
|
|
|
|
from src.scripts.scripts import *
|
|
from src.scripts.models import ScriptDB
|
|
|
|
manager = ScriptDB.objects
|