mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-17 18:01:17 +00:00
2d7c0e26d2
The real fun part is yet to come, i.e. removing the remaining dependencies on the old file system code.
32 lines
431 B
C++
32 lines
431 B
C++
#include "ns.h"
|
|
|
|
#include "build.h"
|
|
|
|
#ifdef _WIN32
|
|
# include "windows_inc.h"
|
|
#elif defined __APPLE__
|
|
# include "osxbits.h"
|
|
#endif
|
|
|
|
#include "common.h"
|
|
#include "common_game.h"
|
|
|
|
BEGIN_SW_NS
|
|
|
|
void SW_InitMultiPsky(void)
|
|
{
|
|
// default
|
|
psky_t * const defaultsky = tileSetupSky(DEFAULTPSKY);
|
|
defaultsky->lognumtiles = 1;
|
|
defaultsky->horizfrac = 8192;
|
|
}
|
|
|
|
void SW_CleanupSearchPaths()
|
|
{
|
|
}
|
|
|
|
void SW_ExtInit()
|
|
{
|
|
|
|
}
|
|
END_SW_NS
|