summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/examples/common/entry/cmd.h
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/examples/common/entry/cmd.h')
-rw-r--r--3rdparty/bgfx/examples/common/entry/cmd.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/3rdparty/bgfx/examples/common/entry/cmd.h b/3rdparty/bgfx/examples/common/entry/cmd.h
index e1b2cbad247..7873d1aedc6 100644
--- a/3rdparty/bgfx/examples/common/entry/cmd.h
+++ b/3rdparty/bgfx/examples/common/entry/cmd.h
@@ -9,7 +9,16 @@
struct CmdContext;
typedef int (*ConsoleFn)(CmdContext* _context, void* _userData, int _argc, char const* const* _argv);
+///
+void cmdInit();
+
+///
+void cmdShutdown();
+
+///
void cmdAdd(const char* _name, ConsoleFn _fn, void* _userData = NULL);
+
+///
void cmdExec(const char* _cmd);
#endif // CMD_H_HEADER_GUARD