From 42756d12c645b462d63516c2a4543e48e1a1f269 Mon Sep 17 00:00:00 2001 From: Robert Date: Sat, 16 May 2020 14:10:03 +0200 Subject: [PATCH] Added to example --- SDLU_Example/main.cpp | 2 ++ 1 file changed, 2 insertions(+) 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