Add: space invaders game

This commit is contained in:
2018-05-10 19:09:43 +09:00
parent b524614220
commit ead099fc05
7 changed files with 158 additions and 5 deletions
+6
View File
@@ -40,10 +40,16 @@ class AppInfoManager {
}
getAppNameKorean(name) {
if(name === null)
return "";
return this.appInfoMap[name].nameKorean;
}
getHowToPlayText(name) {
if(name === null)
return "";
return this.appInfoMap[name].howToPlay;
}