Files
Microtransactions64/s2d_draw.h
farisawan-2000 c52a054fdb color macro
2020-12-12 19:45:53 -05:00

17 lines
348 B
C

#ifndef S2D_DRAW_H
#define S2D_DRAW_H
#include <ultra64.h>
extern int myScale;
extern int myDegrees;
extern uObjMtx final_mtx, rot_mtx;
extern int s2d_red, s2d_green, s2d_blue, s2d_alpha;
extern void setup_font(int idx);
extern void mtx_pipeline(uObjMtx *m, int x, int y);
extern void draw_s2d_glyph(char c, int x, int y, uObjMtx *mt);
#endif