newtree/source/sv_model.c
Bill Currie af032b8d55 port in some improvements from OT (namely fs_basepath, etc, though commandline parsing isn't finished yet)
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.
2000-05-21 08:24:45 +00:00

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)
{
}