-- [Change] Quickly fixed an unused variable warning.

This commit is contained in:
Rtch90 2011-10-25 22:25:31 +01:00
parent d913ab8e10
commit 664ca21c93

View File

@ -32,7 +32,7 @@ struct Vector2 {
float x, y;
Vector2(float X, float Y):
x(X),
y(y) {}
y(Y) {}
Vector2(void):
x(0.0f),