crocparty/device/device.c

7 lines
153 B
C
Raw Normal View History

2024-02-26 00:25:34 +00:00
#include <stdbool.h>
2024-02-25 03:00:23 +00:00
#include "device.h"
2024-02-26 01:54:57 +00:00
uint8_t device_pixels[DEVICE_H][DEVICE_W];
uint32_t device_palette[256];
2024-02-26 00:25:34 +00:00
bool device_buttons[DEVICE_BUTTON_N];