iw4x-client/src/Components/Modules/Console.hpp

14 lines
327 B
C++
Raw Normal View History

2015-12-23 08:45:53 -05:00
namespace Components
{
class Console : public Component
{
public:
Console();
const char* GetName() { return "Console"; };
private:
static void ToggleConsole();
2015-12-27 08:05:08 -05:00
static char** GetAutoCompleteFileList(const char *path, const char *extension, Game::FsListBehavior_e behavior, int *numfiles, int allocTrackType);
2015-12-23 08:45:53 -05:00
};
}