Size.h 125 B

12345678910
  1. #ifndef SIZE_H
  2. #define SIZE_H
  3. struct Size final {
  4. int width;
  5. int height;
  6. Size(int width, int height);
  7. };
  8. #endif