6 lines
150 B
Python
6 lines
150 B
Python
from muck.models.dbref import Dbref, ObjectType
|
|
|
|
class Player(Dbref):
|
|
__mapper_args__ = {
|
|
"polymorphic_identity": ObjectType.PLAYER
|
|
}
|