crocparty/device.h
2024-02-24 19:00:23 -08:00

13 lines
225 B
C

#ifndef CROCPARTY_DEVICE_H
#define CROCPARTY_DEVICE_H
#include <stdint.h>
// 240 x 135 is also cool
#define DEVICE_W 128
#define DEVICE_H 128
extern uint32_t device_pixels[DEVICE_H][DEVICE_W];
#endif //CROCPARTY_DEVICE_H