Contrib: Added chargen module, showing a simple example of creating a character from inside the game.

This commit is contained in:
Griatch 2011-11-06 22:28:24 +01:00
parent 703accdd60
commit 86f76d0d08
3 changed files with 200 additions and 4 deletions

View file

@ -24,7 +24,7 @@ from game.gamesrc.commands.basecommand import Command
from contrib import menusystem, lineeditor
#from contrib import misc_commands
#from contrib import character_creation
from contrib import chargen
class DefaultCmdSet(cmdset_default.DefaultCmdSet):
"""
@ -93,8 +93,8 @@ class OOCCmdSet(cmdset_ooc.OOCCmdSet):
#
# any commands you add below will overload the default ones.
#
self.add(chargen.OOCCmdSetCharGen)
class BaseCmdSet(CmdSet):
"""
Implements an empty, example cmdset.