mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-22 20:21:38 +00:00
20 lines
291 B
C
20 lines
291 B
C
#include "qwsvdef.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)
|
|
{
|
|
}
|