GDsh is simple console shell for adding to your game.
It allows you easily create new commands and have a nice interface.
Add commands via GDsh.add_command(name, function, short_desc, description)
method.
name
is command itselffunction
is associated callable (right now MUST haveargs
(Array
) parameter)short_desc
is description showed in commands list (optional)description
is full description that showed whenhelp <name>
used (optional)