very little progress

This commit is contained in:
2025-06-01 21:32:01 +02:00
parent 1db76cda57
commit 76993bc971
2 changed files with 19 additions and 1 deletions

17
src/components/screen.h Normal file
View File

@@ -0,0 +1,17 @@
#include "../neonucleus.h"
typedef struct nn_screen {
nn_screenChar *buffer;
nn_guard *lock;
nn_refc refc;
int width;
int height;
int viewportWidth;
int viewportHeight;
int maxWidth;
int maxHeight;
int maxDepth;
int editableColors;
int paletteColors;
int *palette;
} nn_screen;