diff --git a/Main.cpp b/Main.cpp new file mode 100644 index 0000000..b64c319 --- /dev/null +++ b/Main.cpp @@ -0,0 +1,11 @@ +#include "main.h" + + +int main() +{ + { + renderWindow(); + } + + return 0; +} \ No newline at end of file diff --git a/database/Timetablexdb.db b/database/Timetablexdb.db new file mode 100644 index 0000000..9ece456 --- /dev/null +++ b/database/Timetablexdb.db @@ -0,0 +1,2 @@ + +Exported database: Timetablex
Table: course
#CourseID
int
CourseName
varchar
Year
int
11Computer Science1
22Computer Science2


Table: userInfo
#UserID
int
Username
varchar
Password
varchar
CourseID
int
11student1password1231
22student2123password2


Document generated by SQLiteStudio v3.2.1 on dom ago 18 12:19:44 2019 \ No newline at end of file diff --git a/fonts/arial.ttf b/fonts/arial.ttf new file mode 100644 index 0000000..8682d94 Binary files /dev/null and b/fonts/arial.ttf differ diff --git a/images/background.png b/images/background.png new file mode 100644 index 0000000..7371d65 Binary files /dev/null and b/images/background.png differ diff --git a/images/loginpage.png b/images/loginpage.png new file mode 100644 index 0000000..964afea Binary files /dev/null and b/images/loginpage.png differ diff --git a/images/splashBackground.png b/images/splashBackground.png new file mode 100644 index 0000000..84e8a7e Binary files /dev/null and b/images/splashBackground.png differ diff --git a/main.h b/main.h new file mode 100644 index 0000000..0b4a1cf --- /dev/null +++ b/main.h @@ -0,0 +1,16 @@ +#include +#include "Splashscreen.h" +#include "LoginPage.h" + + +int renderWindow() +{ + + renderSplashScreen(); + + renderLoginPageSpriteScreen(); + + + return 0; + +} \ No newline at end of file