02061d74c2
(as received from Jonas Echterhoff)
1 line
546 B
C
Executable File
1 line
546 B
C
Executable File
#ifndef __MODELS
|
|
#define __MODELS
|
|
|
|
#include "fileio.h"
|
|
#include "vectors.h"
|
|
enum{
|
|
kTransparencyOff,
|
|
kTransparencyOn,
|
|
kTransparencyGhost
|
|
};
|
|
|
|
extern float gShadowZoom;
|
|
|
|
void ModelLoad(tFileRef modelRef);
|
|
void ModelDispose(tFileRef modelRef);
|
|
void ModelsUnloadAll();
|
|
void DrawModel(tFileRef modelRef,int allowTransparency,int textureSet);
|
|
void DrawModelShadow(tFileRef modelRef,float shadowLength);
|
|
float ModelGetMaxExtends(tFileRef modelRef);
|
|
tVector3 ModelGetCenter(tFileRef modelRef);
|
|
float ModelGetCenterMaxExtends(tFileRef modelRef);
|
|
|
|
#endif |