a janky init

This commit is contained in:
2026-02-08 04:07:36 -06:00
commit 82f4a3b8ac
10 changed files with 360 additions and 0 deletions

13
lib/init.h Executable file
View File

@@ -0,0 +1,13 @@
#ifndef inithell
#define inithell
#include <stdio.h>
#include <stdbool.h>
typedef struct{
int width;
int height;
bool mousedown;
OBJECT *obj;
} STUFFS;
#endif