mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 01:11:44 +00:00
10 lines
333 B
C
10 lines
333 B
C
|
#pragma once
|
||
|
|
||
|
void C_AddTabCommand (const char *name);
|
||
|
void C_RemoveTabCommand (const char *name);
|
||
|
void C_ClearTabCommands(); // Removes all tab commands
|
||
|
void C_TabComplete(bool goForward);
|
||
|
bool C_TabCompleteList();
|
||
|
extern bool TabbedLast; // True if last key pressed was tab
|
||
|
extern bool TabbedList; // True if tab list was shown
|