vantaMOO/typeclasses/characters.py

15 lines
363 B
Python

"""
Characters
Characters are (by default) Objects setup to be puppeted by Accounts.
They are what you "see" in game. The Character class in this module
is setup to be the "default" character type created by the default
creation commands.
"""
from evennia.contrib.rpg.rpsystem import ContribRPCharacter
# rpsystem
class Character(ContribRPCharacter):
pass