Nuked console

This commit is contained in:
2025-11-03 09:22:18 -06:00
parent 3feb43fdad
commit 3ef6205ea3
53 changed files with 127 additions and 1570 deletions

View File

@@ -99,10 +99,9 @@ bool_t inputReleased(const inputaction_t action);
float_t inputAxis(const inputaction_t neg, const inputaction_t pos);
/**
* Binds an input button to an action. Will first check if a matching action
* exists, otherwise it will be treated as a command.
* Binds an input button to an action.
*
* @param button The input button to bind.
* @param action The name of the input action or command to bind the button to.
* @param action The input action to bind the button to.
*/
void inputBind(const inputbutton_t data, const char_t *action);
void inputBind(const inputbutton_t button, const inputaction_t act);