KAU logo and authors

This commit is contained in:
HeshamTB 2020-12-03 04:11:07 +03:00
parent 0e4f871770
commit b0e364dc17
Signed by: Hesham
GPG Key ID: 74876157D199B09E

View File

@ -28,7 +28,10 @@ public class MakkahCity {
private static final Thread t = new Thread(inputListener,"InputThread-Makkah");
public static void main(String[] args) {
if (args.length > 0 && args[0].equals("credits")) {
printAuthors();
System.exit(0);
}
t.start();
//Gen Camp
campPerDistrict[District.ALMANSOOR.ordinal()] = new ArrayList<>();
@ -709,4 +712,42 @@ public class MakkahCity {
}
return buses;
}
private static void printAuthors() {
System.out.println(" :\"_ \n" +
" `` _>j}n|\". `` \n" +
" ```...;\"^chMB4&Mm]?\"_-..``` \n" +
" `.'~_yUXkXPP>~-.` \n" +
" 1c!i\\|c` \n" +
" ;!\\cJUKuhUt?1!\"` \n" +
" ?]BQ]gd30&jK@9s~ \n" +
" ?i]\\.'>xr~`\"cjs: \n" +
" ?\\ !\"\\.> \\s~ \n" +
" 1^ _>>;^ cs: \n" +
" ?^ >oz\"__\"1s~ \n" +
" '!}c_;;>\\>\"r \\]?~ \n" +
" `!r1v\\ \"\"\\.> \\]i1>' \n" +
" `^1=:?^ !x>' \\s_\\|r: \n" +
" `\\r=. ?r-\"\"!'>'!\"\";rs:`\\|r' \n" +
" _11;!==\\\"'`.1n1:`';\\r>>.>=! \n" +
" `>=! -J ~\"t|~!_`>_\"`1\" _??~ \n" +
" ~??_ >\\\"1cn}\\r~1!*c>!? .r|\" \n" +
" _??~ `c^!!=r\\=!?=|!!t. `>>\" \n" +
"~_________\\??^\"\"\"r?\"\"\">c\\*r\"\"\"r1\"\"\"\"r|\\________;_ \n" +
"`\\|'```````'_~`~_:>~````;:`'|z_-.`````````````>r: \n" +
" '=! ;`\";?U> _''*Z;. `v~']Z?tj_11.~r_ `` _|_ \n" +
" ;r_ \"tt0Uc1Zc]Xu\"\\jsiJ|=tj]1]]]=::]1\\z\" -r\" \n" +
" \"|: \"ci> `\";__;_~~~~:::~~~~;;;>J?^rrzZ}1.>!` \n" +
" \"r:>!!_!=?! '::~~~~~-` ;*=!_~_\"`^\\` \n" +
" `!\\\">!~'`\"r~~_\\^!_~:::~_\"\\^\";'^\\..:_>!\\=- \n" +
" .\":` `^|\"~. `:_rr- '_~ ");
System.out.println("\nFaculty of Engineering, King Abdulaziz University\n" +
"Instructor:\n" +
" Dr. Khalid Al-Khlaify\n" +
"Authors:\n" +
" Osamah Badgiesh\n" +
" Assad Dadouch\n" +
" Hesham T. Banafa\n" +
" Ammar Hebbi\n");
}
}