mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +03:00
15 lines
399 B
C++
15 lines
399 B
C++
#ifndef CONSOLE_COMMAND_HANDLERS_HPP
|
|
#define CONSOLE_COMMAND_HANDLERS_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
int32_t ConsoleCommand_Help(const char* command, const char* arguments);
|
|
|
|
int32_t ConsoleCommand_Quit(const char* command, const char* arguments);
|
|
|
|
int32_t ConsoleCommand_SetMap(const char* command, const char* arguments);
|
|
|
|
int32_t ConsoleCommand_Ver(const char* command, const char* arguments);
|
|
|
|
#endif
|