From f9748632b8bc33a3b91cad1392aac23c6fe47ac1 Mon Sep 17 00:00:00 2001 From: Aidan Ross <aross02@fairport.org> Date: Thu, 25 May 2023 08:19:48 -0400 Subject: Renamed everything to be better and fixed arches on SongPlayer --- src/gui/LevelSurround.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/gui/LevelSurround.java') diff --git a/src/gui/LevelSurround.java b/src/gui/LevelSurround.java index 512a088..14ac9a2 100644 --- a/src/gui/LevelSurround.java +++ b/src/gui/LevelSurround.java @@ -1,7 +1,7 @@ package gui; -import fallTest.newSongPlayer; -import fallTest.testSongPlayer; +import GamePlay.newSongPlayer; +import GamePlay.SongPlayer; import javafx.geometry.Insets; import javafx.geometry.Pos; import javafx.scene.control.Button; @@ -83,7 +83,7 @@ public class LevelSurround extends Pane comboTextBox.getChildren().addAll(comboLabel,comboDisplay); comboTextBox.setPadding(new Insets(10)); - testSongPlayer game = new testSongPlayer(level, difficulty, prev, sc); + SongPlayer game = new SongPlayer(level, difficulty, prev, sc); game.minWidthProperty().bind(super.prefHeightProperty().multiply(0.66)); game.minHeightProperty().bind(super.prefHeightProperty()); game.getStyleClass().add("box"); -- cgit v1.2.3