diff options
author | Paul Duncan <pabs@pablotron.org> | 2019-01-08 21:44:04 -0500 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2019-01-08 21:44:04 -0500 |
commit | 13717391b4469072c0cb8041666f0d50ae9996fd (patch) | |
tree | e38fb3ec96227bd91d0f0b425d2cc9a009851abe /src/text/draw.h | |
parent | 3f95b53036f456c2cff9ebc4fc6f26c36a1740eb (diff) | |
download | sok-13717391b4469072c0cb8041666f0d50ae9996fd.tar.bz2 sok-13717391b4469072c0cb8041666f0d50ae9996fd.zip |
add draw.[hc] and util.h
Diffstat (limited to 'src/text/draw.h')
-rw-r--r-- | src/text/draw.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/text/draw.h b/src/text/draw.h new file mode 100644 index 0000000..a4a2a18 --- /dev/null +++ b/src/text/draw.h @@ -0,0 +1,14 @@ +#ifndef DRAW_H +#define DRAW_H + +#include <stddef.h> +#include "../libsok/sok.h" +#include "levels.h" + +void draw( + const sok_ctx_t * const, + const size_t, + const level_t * const +); + +#endif /* DRAW_H */ |