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