Files
vectors/lib/init.h

16 lines
202 B
C
Executable File

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