Added Exceptions to RenderWindow

This commit is contained in:
Robert 2020-05-16 16:03:55 +02:00
parent fac88781aa
commit 615c297b3b
5 changed files with 10 additions and 17 deletions

View file

@ -12,5 +12,8 @@ int main(int argc, char** argv)
vec *= 1.8f;
std::cout << "Vector2f: " << vec.x << ", " << vec.y << std::endl;
sdlu::RenderWindow window;
window.Create(sdlu::Vec2u(800, 800), "First test window", NULL, NULL);
return 0;
}