From 5937189c889f46ec222c076a2d2ae5107a835386 Mon Sep 17 00:00:00 2001 From: "Angelo Borges Silva (borgessa)" Date: Mon, 9 Dec 2019 18:02:19 +0000 Subject: [PATCH] Create main.cpp New main.cpp using the console instead of sfml --- main.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 main.cpp diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..66e2c2f --- /dev/null +++ b/main.cpp @@ -0,0 +1,18 @@ +#include +#include "login.h" +#include "timetableLoading.h" + + +using namespace std; + + +int main() +{ + string username = login(); + + + cout << "Welcome, " + username; + + timetableLoading(username); + +};