diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-01-03 09:23:25 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-01-03 10:14:32 +0000 |
commit | d49c62663b6a2229e9849769591873005c762618 (patch) | |
tree | 96929394d36f129d72c0d3c56bd269dbfa8c2132 /game/src/helpers.h | |
parent | bd4647a79e13f4a6ada8a86754d889fcddd758d4 (diff) | |
download | ubox-msx-lib-d49c62663b6a2229e9849769591873005c762618.tar.gz ubox-msx-lib-d49c62663b6a2229e9849769591873005c762618.zip |
Renamed aux to helpers to be windows compatible
Diffstat (limited to 'game/src/helpers.h')
-rw-r--r-- | game/src/helpers.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/game/src/helpers.h b/game/src/helpers.h new file mode 100644 index 0000000..8f35661 --- /dev/null +++ b/game/src/helpers.h @@ -0,0 +1,12 @@ +#ifndef _HELPERS_H +#define _HELPERS_H + +#include <stdint.h> + +/** + * Auxiliary functions. + */ + +void put_text(uint8_t x, uint8_t y, const uint8_t *text); + +#endif // _HELPERS_H |