diff --git a/core/src/zero1hd/rhythmbullet/graphics/meshes/CircularVisualizerMesh.java b/core/src/zero1hd/rhythmbullet/graphics/meshes/CircularVisualizerMesh.java new file mode 100755 index 0000000..26212dd --- /dev/null +++ b/core/src/zero1hd/rhythmbullet/graphics/meshes/CircularVisualizerMesh.java @@ -0,0 +1,5 @@ +package zero1hd.rhythmbullet.graphics.meshes; + +public class CircularVisualizerMesh { + +} diff --git a/core/src/zero1hd/rhythmbullet/ui/components/ScrollText.java b/core/src/zero1hd/rhythmbullet/graphics/ui/components/ScrollText.java similarity index 95% rename from core/src/zero1hd/rhythmbullet/ui/components/ScrollText.java rename to core/src/zero1hd/rhythmbullet/graphics/ui/components/ScrollText.java index 5b847c1..d198f0a 100755 --- a/core/src/zero1hd/rhythmbullet/ui/components/ScrollText.java +++ b/core/src/zero1hd/rhythmbullet/graphics/ui/components/ScrollText.java @@ -1,4 +1,4 @@ -package zero1hd.rhythmbullet.ui.components; +package zero1hd.rhythmbullet.graphics.ui.components; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.g2d.Batch; diff --git a/core/src/zero1hd/rhythmbullet/ui/components/ShortenedTextLabel.java b/core/src/zero1hd/rhythmbullet/graphics/ui/components/ShortenedTextLabel.java similarity index 92% rename from core/src/zero1hd/rhythmbullet/ui/components/ShortenedTextLabel.java rename to core/src/zero1hd/rhythmbullet/graphics/ui/components/ShortenedTextLabel.java index 4cf3c14..f851792 100755 --- a/core/src/zero1hd/rhythmbullet/ui/components/ShortenedTextLabel.java +++ b/core/src/zero1hd/rhythmbullet/graphics/ui/components/ShortenedTextLabel.java @@ -1,4 +1,4 @@ -package zero1hd.rhythmbullet.ui.components; +package zero1hd.rhythmbullet.graphics.ui.components; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.g2d.BitmapFont; diff --git a/desktop/src/zero1hd/rhythmbullet/desktop/graphics/ui/components/MusicSelectable.java b/desktop/src/zero1hd/rhythmbullet/desktop/graphics/ui/components/MusicSelectable.java index f9ef3cd..c927cdd 100755 --- a/desktop/src/zero1hd/rhythmbullet/desktop/graphics/ui/components/MusicSelectable.java +++ b/desktop/src/zero1hd/rhythmbullet/desktop/graphics/ui/components/MusicSelectable.java @@ -11,7 +11,7 @@ import com.badlogic.gdx.utils.Disposable; import zero1hd.rhythmbullet.audio.MusicInfo; import zero1hd.rhythmbullet.desktop.graphics.ui.pages.MusicSelectionPage; -import zero1hd.rhythmbullet.ui.components.ShortenedTextLabel; +import zero1hd.rhythmbullet.graphics.ui.components.ShortenedTextLabel; public class MusicSelectable extends WidgetGroup implements Disposable { private Table table; diff --git a/desktop/src/zero1hd/rhythmbullet/desktop/graphics/ui/pages/MainPage.java b/desktop/src/zero1hd/rhythmbullet/desktop/graphics/ui/pages/MainPage.java index 5e0588a..3ab2cb0 100755 --- a/desktop/src/zero1hd/rhythmbullet/desktop/graphics/ui/pages/MainPage.java +++ b/desktop/src/zero1hd/rhythmbullet/desktop/graphics/ui/pages/MainPage.java @@ -19,7 +19,7 @@ import zero1hd.rhythmbullet.desktop.audio.MusicListController; import zero1hd.rhythmbullet.desktop.graphics.ui.components.MusicControls; import zero1hd.rhythmbullet.desktop.graphics.ui.components.TitleBarVisualizer; import zero1hd.rhythmbullet.desktop.screens.MainMenuScreen; -import zero1hd.rhythmbullet.ui.components.ScrollText; +import zero1hd.rhythmbullet.graphics.ui.components.ScrollText; public class MainPage extends Page implements Observer { private Label versionLabel; diff --git a/desktop/src/zero1hd/rhythmbullet/desktop/graphics/ui/pages/MusicSelectionPage.java b/desktop/src/zero1hd/rhythmbullet/desktop/graphics/ui/pages/MusicSelectionPage.java index ff4a7bc..6960659 100755 --- a/desktop/src/zero1hd/rhythmbullet/desktop/graphics/ui/pages/MusicSelectionPage.java +++ b/desktop/src/zero1hd/rhythmbullet/desktop/graphics/ui/pages/MusicSelectionPage.java @@ -30,7 +30,7 @@ import zero1hd.rhythmbullet.audio.MusicManager; import zero1hd.rhythmbullet.desktop.audio.MusicInfoController; import zero1hd.rhythmbullet.desktop.audio.MusicListController; import zero1hd.rhythmbullet.desktop.graphics.ui.components.MusicSelectable; -import zero1hd.rhythmbullet.ui.components.ScrollText; +import zero1hd.rhythmbullet.graphics.ui.components.ScrollText; public class MusicSelectionPage extends Page implements Observer { Preferences musicFileAnnotation;