Files
bgfx/examples/common/entry/cmd.h
Бранимир Караџић 53772163f4 Added cmdRemove.
2021-10-26 18:20:35 -07:00

28 lines
551 B
C

/*
* Copyright 2010-2021 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
*/
#ifndef CMD_H_HEADER_GUARD
#define CMD_H_HEADER_GUARD
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 cmdRemove(const char* _name);
///
void cmdExec(const char* _format, ...);
#endif // CMD_H_HEADER_GUARD