breakhack/src/dimension.h

10 lines
140 B
C

#ifndef DIMENSION_H_
#define DIMENSION_H_
typedef struct {
unsigned int width;
unsigned int height;
} Dimension;
#endif // DIMENSION_H_