mirror of
https://github.com/nacabaro/nacapet.git
synced 2026-06-05 14:02:53 +00:00
15 lines
260 B
C
15 lines
260 B
C
#ifndef BACKGROUND_DATA_H
|
|
#define BACKGROUND_DATA_H
|
|
|
|
#include <stdint.h>
|
|
|
|
extern int currentBackground;
|
|
|
|
struct BackgroundData {
|
|
uint8_t backgroundWidth;
|
|
uint8_t backgroundHeight;
|
|
uint8_t scaleFactor;
|
|
uint16_t* backgroundData = NULL;
|
|
};
|
|
|
|
#endif |