Add default to switch case.

This commit is contained in:
Murat65536
2025-05-23 22:04:13 -04:00
parent cbfb329b94
commit 72fb0a0d28

View File

@@ -725,6 +725,8 @@ public interface MovementHelper extends ActionCosts, Helper {
case 7:
state.setInput(Input.MOVE_BACK, true).setInput(Input.MOVE_RIGHT, true);
break;
default:
break;
}
}