mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
de98a70b9f
Staring to hack stuff: I need an alert mechanism already to confirm a move.
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
|