Files
vectors/lib/init.h
2026-02-08 04:07:36 -06:00

14 lines
177 B
C
Executable File

#ifndef inithell
#define inithell
#include <stdio.h>
#include <stdbool.h>
typedef struct{
int width;
int height;
bool mousedown;
OBJECT *obj;
} STUFFS;
#endif