mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
12 lines
253 B
C
12 lines
253 B
C
#ifndef KS_NES_DRAW_H
|
|
#define KS_NES_DRAW_H
|
|
|
|
#include "types.h"
|
|
#include "Famicom/ks_nes_common.h"
|
|
|
|
extern void ksNesDrawInit(ksNesCommonWorkObj* wp);
|
|
extern void ksNesDraw(ksNesCommonWorkObj* wp, ksNesStateObj* sp);
|
|
extern void ksNesDrawEnd();
|
|
|
|
#endif
|