mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-07 20:46:17 +01:00
10 lines
191 B
C
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
|