PINK ADVENTURE
This was the project that I presented as a final project in my master degree. This means that I needed to create an entire PC and mobile version of a 2D platform game and its Game Design Document (GDD). In this project I managed the data using Json structures like this one: { "currentLevel" : "Level1" , "Level1" : true , "Level1_points" : 0 , "Level1_time" : 999999 , "Level2" : true , "Level2_points" : 0 , "Level2_time" : 999999 , "Level3" : false , "Level3_points" : 0 , "Level3_time" : 999999 , "Level4" : false , "Level4_points" : 0 , "Level4_time" : 999999 , "Level5" : false , "Level5_points" : 0 , "Level5_time" : 999999 , "Level6" : false , "Level6_points" : 0 , "Level6_time" : 999999 } To deal with this kind of structures I devloped a...