| 31 | void Set( unsigned int pWidth, unsigned int pHeight ) { mWidth = pWidth; mHeight = pHeight; } |
| 32 | |
| 33 | unsigned int WidthByHeight() { return mWidth * mHeight; } |
| 34 | int getWidth() const { return mWidth; } |
| 35 | int getHeight() const { return mHeight; } |
| 36 |