diff --git a/SDLU_Example/main.cpp b/SDLU_Example/main.cpp index 75739b8..e947d4b 100644 --- a/SDLU_Example/main.cpp +++ b/SDLU_Example/main.cpp @@ -10,5 +10,7 @@ int main(int argc, char** argv) std::cout << "Vector2f: " << vec.x << ", " << vec.y << std::endl; + vec *= 1.8f; + std::cout << "Vector2f: " << vec.x << ", " << vec.y << std::endl; return 0; } \ No newline at end of file