Code: Alles auswählen
cannot assing to 'Turbo::LangsamerOn'
Code: Alles auswählen
this.LangsamerOn = new bool [Game.CharacterCount];
Th5mio
Code: Alles auswählen
cannot assing to 'Turbo::LangsamerOn'
Code: Alles auswählen
this.LangsamerOn = new bool [Game.CharacterCount];
Code: Alles auswählen
// header
struct Turbo {
import static bool Langsamer(int index);
}
// script
bool _slow[];
void game_start() {
_slow = new bool[Game.CharacterCount];
}
static bool Turbo::Langsamer(int index) {
return _slow(index);
}