diff options
author | Phil Jones <philj56@gmail.com> | 2021-10-26 23:15:46 +0100 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2021-10-26 23:15:46 +0100 |
commit | 42679f7e53364e8de8de665ac7ba9b7e2dd1970b (patch) | |
tree | 14e145ea833097aba91f516f4cd124e49f5a2a14 /src/png.h | |
parent | c1e7ea47b25cdf7bf316ce522f9aa438b0b657c7 (diff) |
Add PNG background.
Diffstat (limited to 'src/png.h')
-rw-r--r-- | src/png.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/png.h b/src/png.h new file mode 100644 index 0000000..68b432a --- /dev/null +++ b/src/png.h @@ -0,0 +1,9 @@ +#ifndef PNG_H +#define PNG_H + +#include <stdint.h> +#include "client.h" + +void load_background(struct client_state *state, const char *filename); + +#endif /* PNG_H */ |