mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-26 14:21:03 +00:00
19 lines
474 B
C
19 lines
474 B
C
/*
|
|
From the 'Wizard2' engine by Spaddlewit Inc. ( http://www.spaddlewit.com )
|
|
An experimental work-in-progress.
|
|
|
|
Donated to Sonic Team Junior and adapted to work with
|
|
Sonic Robo Blast 2. The license of this code matches whatever
|
|
the licensing is for Sonic Robo Blast 2.
|
|
*/
|
|
|
|
#ifndef _HW_MD2LOAD_H_
|
|
#define _HW_MD2LOAD_H_
|
|
|
|
#include "hw_model.h"
|
|
#include "../doomtype.h"
|
|
|
|
// Load the Model
|
|
model_t *MD2_LoadModel(const char *fileName, int ztag, boolean useFloat);
|
|
|
|
#endif
|