VoxelEngine/src/graphics/core/Viewport.cpp
2024-04-23 02:00:03 +03:00

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;
}