mirror of
https://github.com/thug1src/thug.git
synced 2024-12-04 05:46:46 +00:00
16 lines
261 B
C++
16 lines
261 B
C++
|
// Config Manager stuff. KSH 20 Mar 2002
|
||
|
#include <sys/config/config.h>
|
||
|
|
||
|
namespace Config
|
||
|
{
|
||
|
|
||
|
void Plat_Init(sint argc, char** argv)
|
||
|
{
|
||
|
gHardware = HARDWARE_WIN32;
|
||
|
gLanguage = LANGUAGE_ENGLISH;
|
||
|
gGotExtraMemory = true;
|
||
|
}
|
||
|
|
||
|
} // namespace Config
|
||
|
|