diff --git a/src/itdelatrisu/opsu/Options.java b/src/itdelatrisu/opsu/Options.java index 78a15d2a..be744824 100644 --- a/src/itdelatrisu/opsu/Options.java +++ b/src/itdelatrisu/opsu/Options.java @@ -535,7 +535,11 @@ public class Options { ENABLE_THEME_SONG ("Enable Theme Song", "MenuMusic", "Whether to play the theme song upon starting opsu!", true), REPLAY_SEEKING ("Replay Seeking", "ReplaySeeking", "Enable a seeking bar on the left side of the screen during replays.", false), DISABLE_UPDATER ("Disable Automatic Updates", "DisableUpdater", "Disable automatic checking for updates upon starting opsu!.", false), - ENABLE_WATCH_SERVICE ("Enable Watch Service", "WatchService", "Watch the beatmap directory for changes. Requires a restart.", false); + ENABLE_WATCH_SERVICE ("Enable Watch Service", "WatchService", "Watch the beatmap directory for changes. Requires a restart.", false), + + DANCE_MOVER ("Mover algorithm", "Mover", "Algorithm that decides how to move from note to note" ) { + + }; /** Option name. */ private final String name; diff --git a/src/itdelatrisu/opsu/states/OptionsMenu.java b/src/itdelatrisu/opsu/states/OptionsMenu.java index d0c96736..fd9ec7ad 100644 --- a/src/itdelatrisu/opsu/states/OptionsMenu.java +++ b/src/itdelatrisu/opsu/states/OptionsMenu.java @@ -103,6 +103,9 @@ public class OptionsMenu extends BasicGameState { GameOption.REPLAY_SEEKING, GameOption.DISABLE_UPDATER, GameOption.ENABLE_WATCH_SERVICE + }), + DANCE ("Dance", new GameOption[] { + GameOption.DANCE_MOVER }); /** Total number of tabs. */