16 lines
255 B
C
16 lines
255 B
C
/***
|
|
*
|
|
* Copyright (c) 2016-2019 Marco 'eukara' Hladik. All rights reserved.
|
|
*
|
|
* See the file LICENSE attached with the sources for usage details.
|
|
*
|
|
****/
|
|
|
|
float Game_ConsoleCommand(void)
|
|
{
|
|
switch(argv(0)) {
|
|
default:
|
|
return FALSE;
|
|
}
|
|
return TRUE;
|
|
}
|