Spaces:
Running
Running
File size: 396 Bytes
87b3b3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#BEGIN_PROPERTIES#
{
"version": "1.2.1",
"commandsIntroduced": ['object.pushable'],
"music": "Brazil"
}
#END_PROPERTIES#
/********************
* sampleLevel.js *
* by AlexNisnevich *
********************
*
*/
function startLevel(map) {
#START_OF_START_LEVEL#
map.placePlayer(0, 12);
map.placeObject(map.getWidth()/2, map.getHeight()/2, 'exit');
#END_OF_START_LEVEL#
}
|