removed old input and made shits hitable

This commit is contained in:
KadeDev
2021-03-30 08:54:53 -07:00
parent 2a7bc51ed5
commit b0ffa2aa43
2 changed files with 19 additions and 67 deletions

View File

@ -52,21 +52,6 @@ class DFJKOption extends Option
}
}
class NewInputOption extends Option
{
public override function press():Bool
{
FlxG.save.data.newInput = !FlxG.save.data.newInput;
display = updateDisplay();
return true;
}
private override function updateDisplay():String
{
return FlxG.save.data.newInput ? "New input" : "Old Input";
}
}
class DownscrollOption extends Option
{
public override function press():Bool