the sound of progress

This commit is contained in:
2025-06-02 20:34:36 +02:00
parent 76993bc971
commit 65ebf5d4f3
4 changed files with 19 additions and 73 deletions

1
src/components/screen.c Normal file
View File

@@ -0,0 +1 @@
#include "screen.h"

View File

@@ -1,3 +1,6 @@
#ifndef NN_SCREEN_H
#define NN_SCREEN_H
#include "../neonucleus.h"
typedef struct nn_screen {
@@ -14,4 +17,9 @@ typedef struct nn_screen {
int editableColors;
int paletteColors;
int *palette;
bool isOn;
nn_address keyboards[NN_MAX_SCREEN_KEYBOARDS];
size_t keyboardCount;
} nn_screen;
#endif