Vector2 Vector2::operator*( Vector2& other ) { return Vector2(_self * other.GetSelf()); }
void Vector2::operator=( Vector2& other ) { _self = other.GetSelf(); }