This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Global settings and wave settings for Single Tower Defence | |
# https://quatschcode.itch.io/singletowerknight | |
# (c) QuatschSalat | |
extends Node | |
var sound_on = true | |
var music_on = true | |
var tutorial_on = true | |
var mouse_mode_on = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// We use a shorter function to access localized strings | |
#define AMLocalized(key) NSLocalizedString(key, nil) | |
// Or even shorter | |
#define _(key) NSLocalizedString(key, nil) | |
// You can use every allowed function name you want | |
#define Franz(key) NSLocalizedString(key, nil) |