14 lines
221 B
C++
14 lines
221 B
C++
#include "Viewport.hpp"
|
|
|
|
Viewport::Viewport(uint width, uint height)
|
|
: width(width), height(height) {
|
|
}
|
|
|
|
uint Viewport::getWidth() const {
|
|
return width;
|
|
}
|
|
|
|
uint Viewport::getHeight() const {
|
|
return height;
|
|
}
|