2022-02-03 14:05:24 -05:00
|
|
|
#pragma once
|
2022-03-13 08:59:35 -04:00
|
|
|
#include "game/dvars.hpp"
|
2022-02-03 14:05:24 -05:00
|
|
|
|
|
|
|
namespace game_console
|
|
|
|
{
|
|
|
|
bool console_char_event(int local_client_num, int key);
|
|
|
|
bool console_key_event(int local_client_num, int key, int down);
|
2022-03-13 08:45:20 -04:00
|
|
|
|
|
|
|
bool match_compare(const std::string& input, const std::string& text, const bool exact);
|
2022-03-13 08:59:35 -04:00
|
|
|
void find_matches(std::string input, std::vector<dvars::dvar_info>& suggestions, const bool exact);
|
2022-03-13 08:45:20 -04:00
|
|
|
}
|