diff --git a/SDLU_Example/main.cpp b/SDLU_Example/main.cpp index cf1aef4..c4a5ece 100644 --- a/SDLU_Example/main.cpp +++ b/SDLU_Example/main.cpp @@ -6,7 +6,6 @@ int main(int argc, char** argv) MyWindow window(800, 800, "Test"); SDL_SetWindowTitle(window.GetWindow(), "New Title"); - window.SetMouseCursorGrabbed(true); SDL_Event event; float t = 0.f; @@ -19,6 +18,10 @@ int main(int argc, char** argv) case SDL_WINDOWEVENT_CLOSE: window.Close(); break; + + case SDL_WINDOWEVENT_RESIZED: + std::cout << "If you see this, something isn't working." << std::endl; + break; } }