diff --git a/App/App/src/main.cpp b/App/App/src/main.cpp index 5f435cc..02927d7 100644 --- a/App/App/src/main.cpp +++ b/App/App/src/main.cpp @@ -7,18 +7,6 @@ using namespace std; int main(int argc, char const *argv[]) { - // App::App* app = new App::App(); - // return app->getReturnCode(); - Vector2 v1(1, 1.5); - Vector2 v2(3, -2); - Vector2 res = v1 + v2; - cout << res.x << ", " << res.y << endl; - res = v1 - v2; - cout << res.x << ", " << res.y << endl; - res = v1 * v2; - cout << res.x << ", " << res.y << endl; - res = v1 / v2; - cout << res.x << ", " << res.y << endl; - - return 0; + App::App* app = new App::App(); + return app->getReturnCode(); }