mirror of
https://github.com/libretro/snes9x2005.git
synced 2024-12-02 22:26:17 +00:00
34 lines
577 B
C
34 lines
577 B
C
#include "../copyright"
|
|
|
|
#ifndef _C4_H_
|
|
#define _C4_H_
|
|
|
|
#include "port.h"
|
|
|
|
extern int16_t C4WFXVal;
|
|
extern int16_t C4WFYVal;
|
|
extern int16_t C4WFZVal;
|
|
extern int16_t C4WFX2Val;
|
|
extern int16_t C4WFY2Val;
|
|
extern int16_t C4WFDist;
|
|
extern int16_t C4WFScale;
|
|
|
|
void C4TransfWireFrame();
|
|
void C4TransfWireFrame2();
|
|
void C4CalcWireFrame();
|
|
|
|
extern int16_t C41FXVal;
|
|
extern int16_t C41FYVal;
|
|
extern int16_t C41FAngleRes;
|
|
extern int16_t C41FDist;
|
|
extern int16_t C41FDistVal;
|
|
|
|
void C4Op1F();
|
|
void C4Op15();
|
|
void C4Op0D();
|
|
|
|
extern int16_t C4CosTable[];
|
|
extern int16_t C4SinTable[];
|
|
|
|
#endif
|