feat: Added short forms for commonly used commands

This commit is contained in:
WerWolv
2024-03-14 18:24:31 +01:00
parent f2309ba079
commit cbc31f3c18
4 changed files with 38 additions and 22 deletions

View File

@@ -15,8 +15,10 @@ struct ImGuiContext;
namespace hex {
struct SubCommand {
std::string commandKey;
std::string commandDesc;
std::string commandLong;
std::string commandShort;
std::string commandDescription;
std::function<void(const std::vector<std::string>&)> callback;
};