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.
11 lines
283 B
Python
11 lines
283 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.help
|
|
Also, the initiated object manager is available as src.help.manager.
|
|
|
|
"""
|
|
|
|
from src.help.models import *
|
|
|
|
manager = HelpEntry.objects
|