16 lines
209 B
C
Executable File
16 lines
209 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[obj_n];
|
|
} STUFFS;
|
|
#endif
|