13 lines
225 B
C
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
|