diff options
Diffstat (limited to 'src/resource.c')
| -rw-r--r-- | src/resource.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/resource.c b/src/resource.c new file mode 100644 index 0000000..ed4766b --- /dev/null +++ b/src/resource.c @@ -0,0 +1,18 @@ +#include "resource.h" + +#include "res/bluetooth.xbm" +#include "res/foss-asia-2.xbm" + +xbm_t bluetooth = { + .bits = bluetooth_bits, + .w = bluetooth_width, + .h = bluetooth_height, + .fh = 11 +}; + +xbm_t splash = { + .bits = foss_asia_2_bits, + .w = foss_asia_2_width, + .h = foss_asia_2_height, + .fh = 11 +};
\ No newline at end of file |