Size.cpp 93 B

1234
  1. #include "utils/Size.h"
  2. Size::Size(int width, int height) : width(width), height(height) {
  3. }