gfx and 2-2 and multi objects

This commit is contained in:
2026-02-08 20:01:32 -06:00
parent ce57691f96
commit e06ab8f76b
12 changed files with 483 additions and 8 deletions

15
lib/init-multi.h Executable file
View File

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