mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 14:52:08 +00:00
af032b8d55
split up the headerfiles and such. common.[ch] and qwsvdef.h no longer exist. More work still needs to be done (esp for windows) but this should be a major improvement.
40 lines
570 B
C
40 lines
570 B
C
#ifdef HAVE_CONFIG_H
|
|
# include <config.h>
|
|
#endif
|
|
#include "server.h"
|
|
#include "crc.h"
|
|
#include "msg.h"
|
|
#include "world.h"
|
|
#include "commdef.h"
|
|
#include "cmd.h"
|
|
#include "sys.h"
|
|
#include "pmove.h"
|
|
|
|
void Mod_LoadBrushModel (model_t *mod, void *buffer);
|
|
|
|
void
|
|
Mod_LoadAliasModel(model_t *mod, void *buf)
|
|
{
|
|
Mod_LoadBrushModel (mod, buf);
|
|
}
|
|
|
|
void
|
|
Mod_LoadSpriteModel(model_t *mod, void *buf)
|
|
{
|
|
Mod_LoadBrushModel (mod, buf);
|
|
}
|
|
|
|
void
|
|
R_InitSky(struct texture_s *mt)
|
|
{
|
|
}
|
|
|
|
void
|
|
Mod_LoadMMNearest(miptex_t *mx, texture_t *tx)
|
|
{
|
|
}
|
|
|
|
void
|
|
GL_SubdivideSurface (msurface_t *fa)
|
|
{
|
|
}
|