crocparty/game/device.h

13 lines
225 B
C
Raw Normal View History

2024-02-25 03:00:23 +00:00
#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