mirror of
https://github.com/evennia/evennia.git
synced 2026-03-23 16:26: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
348 B
Python
12 lines
348 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.comms
|
|
Also, the initiated object manager is available as src.comms.msgmanager and src.comms.channelmanager.
|
|
|
|
"""
|
|
|
|
from src.comms.models import *
|
|
|
|
msgmanager = Msg.objects
|
|
channelmanager = Channel.objects
|