iw4x-client/iw4/Components/Console.hpp
momo5502 b8a94cbf22
2015-12-27 14:05:08 +01:00

14 lines
327 B
C++

namespace Components
{
class Console : public Component
{
public:
Console();
const char* GetName() { return "Console"; };
private:
static void ToggleConsole();
static char** GetAutoCompleteFileList(const char *path, const char *extension, Game::FsListBehavior_e behavior, int *numfiles, int allocTrackType);
};
}