breakhack/src/dimension.h

10 lines
140 B
C
Raw Normal View History

2017-11-30 21:00:47 +01:00
#ifndef DIMENSION_H_
#define DIMENSION_H_
typedef struct {
unsigned int width;
unsigned int height;
} Dimension;
#endif // DIMENSION_H_