xwords/xwords4/wasm/wasmdraw.h
Eric House de98a70b9f snapshot
Staring to hack stuff: I need an alert mechanism already to confirm a
move.
2021-03-19 14:26:18 -07:00

10 lines
191 B
C

#ifndef _WASMDRAW_H_
#define _WASMDRAW_H_
#include "draw.h"
DrawCtx* wasm_draw_make( MPFORMAL int width, int height );
void wasm_draw_render( DrawCtx* dctx, SDL_Renderer* dest );
#endif