some functions moved to low_level

This commit is contained in:
2026-01-27 14:10:13 +01:00
parent 4fa11a57db
commit 3936402e42
3 changed files with 178 additions and 145 deletions
+8
View File
@@ -0,0 +1,8 @@
struct Cursor {
unsigned short x;
unsigned short y;
Cursor() : x(0), y(0) {}
};
Cursor cursor1;