StrongJoshua / libgdx-inGameConsole

A LibGdx library that allows a developer to add a console (similar to how it is featured in Source games) to their game.
https://www.strongjoshua.net/projects/games/libgdx-ingame-console
Apache License 2.0
131 stars 35 forks source link

All commands on "help" #24

Closed yoselibero closed 7 years ago

yoselibero commented 7 years ago

Please, can "help" command list contain "help", "exit", "saveLog" as well? I MyCommandExecutor i did it like:

/**
 * keep it here for "help" hint
 */
@Override
public void help()
{
    super.help();
}

/**
 * keep it here for "help" hint
 */
@Override
public void exitApp()
{
    super.exitApp();
}

/**
 * keep it here for "help" hint
 */
@Override
public void printLog(String path)
{
    super.printLog(path);
}

but those methods are final now. I would like to get all commands after "help".

Thank You! J.

StrongJoshua commented 7 years ago

I have just written this, it should be uploaded as a new version soon.

yoselibero commented 7 years ago

Thx!

StrongJoshua commented 7 years ago

Released in 0.5.3