diff --git a/References/RecrownedAthenaeum.dll b/References/RecrownedAthenaeum.dll index be4deea..bb58b5e 100644 Binary files a/References/RecrownedAthenaeum.dll and b/References/RecrownedAthenaeum.dll differ diff --git a/RhythmBullet/Screens/MainMenu/MainPage.cs b/RhythmBullet/Screens/MainMenu/MainPage.cs index ed4f3d1..b537645 100644 --- a/RhythmBullet/Screens/MainMenu/MainPage.cs +++ b/RhythmBullet/Screens/MainMenu/MainPage.cs @@ -42,6 +42,18 @@ namespace RhythmBullet.Screens.MainMenu title.bounds.X = width / 2; title.bounds.Y = height / 2; + + playButton.CenterOrigin(); + playButton.bounds.Width = (int) (0.3f * title.TrueBounds.Width); + playButton.CenterHorizontally(new Rectangle(0, 0, width, height)); + playButton.bounds.Y = title.bounds.X + title.TrueBounds.Height + 30; + + quitButton.CenterOrigin(); + quitButton.bounds.Width = (int) (0.3f * title.bounds.Width); + quitButton.bounds.Height = (int) (0.15f * playButton.bounds.Width); + playButton.CenterHorizontally(new Rectangle(0, 0, width, height)); + quitButton.bounds.Y = playButton.bounds.X + playButton.bounds.Height + 15; + base.ApplySize(width, height); }