Files
Microtransactions64/s2d_draw.h
2020-12-11 22:51:58 -05:00

15 lines
293 B
C

#ifndef S2D_DRAW_H
#define S2D_DRAW_H
#include <ultra64.h>
extern int myScale;
extern int degrees;
extern uObjMtx final_mtx, rot_mtx;
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