• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #pragma once
2 
3 struct nsSize {
4   int width, height;
nsSizensSize5   constexpr nsSize(int aWidth, int aHeight) : width(aWidth), height(aHeight) {}
6 };
7