blob: 72bb3660cf2b3cf61ad1d9de3a2996247f18d582 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
} STUFFS;
#endif
|