Added to example

This commit is contained in:
Robert 2020-05-16 14:10:03 +02:00
parent 59942d3de0
commit 42756d12c6

View file

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