Skip to content

Commit

Permalink
bla
Browse files Browse the repository at this point in the history
  • Loading branch information
increpare committed Jan 17, 2019
1 parent 6921bbb commit 467bb9e
Show file tree
Hide file tree
Showing 10 changed files with 219 additions and 94 deletions.
Binary file modified data/graphics/bg.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/graphics/icon_flagge_es.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/graphics/icon_flagge_fr.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/graphics/letzterlevel.aseprite
Binary file not shown.
Binary file added data/graphics/letzterlevel.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified neueslayout_expanded.aseprite
Binary file not shown.
Binary file added neueslayout_expanded.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 13 additions & 6 deletions src/Globals.hx
Expand Up @@ -21,12 +21,19 @@ class Globals
level:0,
solved:[0,0,0,0,0,0]
};

public static function S(de:String,en:String):String{
if (state.sprache==0){
return de;
} else {
return en;
//de, en, es, fr
public static function S(de:String,en:String, es:String, fr:String):String{
switch(state.sprache){
case 0:
return en;
case 1:
return de;
case 2:
return es;
case 3:
return fr;
}
trace("ERROR state.sprache = "+state.sprache);
return "";
}
}

0 comments on commit 467bb9e

Please sign in to comment.