VoxelEngine/src/graphics/Viewport.cpp
2023-11-19 20:18:44 +03:00

13 lines
218 B
C++

#include "Viewport.h"
Viewport::Viewport(uint width, uint height)
: width(width), height(height) {
}
uint Viewport::getWidth() const {
return width;
}
uint Viewport::getHeight() const {
return height;
}