Skip to content
Permalink
Browse files
Create main.cpp
New main.cpp using the console instead of sfml
  • Loading branch information
borgessa committed Dec 9, 2019
1 parent bfe4a8d commit 5937189c889f46ec222c076a2d2ae5107a835386
Showing 1 changed file with 18 additions and 0 deletions.
@@ -0,0 +1,18 @@
#include <iostream>
#include "login.h"
#include "timetableLoading.h"


using namespace std;


int main()
{
string username = login();


cout << "Welcome, " + username;

timetableLoading(username);

};

0 comments on commit 5937189

Please sign in to comment.