removed unused imports and applied minor changes from RA.

This commit is contained in:
Harrison Deng 2019-01-14 20:06:17 -06:00
parent 104a759e9f
commit d02230c593
13 changed files with 10 additions and 60 deletions

View File

@ -1,11 +1,5 @@
using Microsoft.Xna.Framework.Media; using NAudio.Wave;
using NAudio.Dsp;
using NAudio.Wave;
using System; using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RecrownedAthenaeum.Audio namespace RecrownedAthenaeum.Audio
{ {

View File

@ -1,12 +1,8 @@
using Microsoft.Xna.Framework.Media; using System;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
using System.IO; using System.IO;
using System.Linq;
using System.Text;
using System.Threading; using System.Threading;
using System.Threading.Tasks;
namespace RecrownedAthenaeum.Audio namespace RecrownedAthenaeum.Audio
{ {

View File

@ -1,10 +1,4 @@
using System; namespace RecrownedAthenaeum.Audio
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RecrownedAthenaeum.Audio
{ {
public enum SupportedFormats public enum SupportedFormats
{ {

View File

@ -2,10 +2,6 @@
using NAudio.Dsp; using NAudio.Dsp;
using NAudio.Wave; using NAudio.Wave;
using System; using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RecrownedAthenaeum.Audio namespace RecrownedAthenaeum.Audio
{ {

View File

@ -4,10 +4,6 @@ using RecrownedAthenaeum.Camera;
using RecrownedAthenaeum.Render; using RecrownedAthenaeum.Render;
using RecrownedAthenaeum.UI.Modular; using RecrownedAthenaeum.UI.Modular;
using System; using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RecrownedAthenaeum.Audio.Visualizer namespace RecrownedAthenaeum.Audio.Visualizer
{ {

View File

@ -1,9 +1,4 @@
using RecrownedAthenaeum.ContentSystem; using RecrownedAthenaeum.ContentSystem;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RecrownedAthenaeum.ContentResolvers namespace RecrownedAthenaeum.ContentResolvers
{ {

View File

@ -1,11 +1,5 @@
using RecrownedAthenaeum.Preferences; using RecrownedAthenaeum.ContentSystem;
using RecrownedAthenaeum.ContentSystem;
using RecrownedAthenaeum.DataTypes; using RecrownedAthenaeum.DataTypes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RecrownedAthenaeum.ContentResolvers namespace RecrownedAthenaeum.ContentResolvers
{ {

View File

@ -1,5 +1,4 @@
using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Framework.Input;
using RecrownedAthenaeum.Persistence;
namespace RecrownedAthenaeum.Preferences namespace RecrownedAthenaeum.Preferences
{ {

View File

@ -1,7 +1,5 @@
using System; using System;
using System.Xml.Serialization;
using RecrownedAthenaeum.DataTypes; using RecrownedAthenaeum.DataTypes;
using RecrownedAthenaeum.Persistence;
namespace RecrownedAthenaeum.Preferences namespace RecrownedAthenaeum.Preferences
{ {

View File

@ -1,5 +1,4 @@
using System.Reflection; using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following // General Information about an assembly is controlled through the following

View File

@ -1,5 +1,4 @@
using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Graphics;
using RecrownedAthenaeum.UI.Book; using RecrownedAthenaeum.UI.Book;
using RecrownedAthenaeum.ContentSystem; using RecrownedAthenaeum.ContentSystem;
using RecrownedAthenaeum.UI.Modular.Modules; using RecrownedAthenaeum.UI.Modular.Modules;

View File

@ -1,14 +1,10 @@
 using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using RecrownedAthenaeum.Screens.Transitions; using RecrownedAthenaeum.Screens.Transitions;
using RecrownedAthenaeum.UI.Book; using RecrownedAthenaeum.UI.Book;
using RecrownedAthenaeum.Camera; using RecrownedAthenaeum.Camera;
using RecrownedAthenaeum.ContentSystem; using RecrownedAthenaeum.ContentSystem;
using RecrownedAthenaeum.ScreenSystem; using RecrownedAthenaeum.ScreenSystem;
using System;
namespace RecrownedAthenaeum.Screens.MainMenu namespace RecrownedAthenaeum.Screens.MainMenu
{ {
@ -30,10 +26,10 @@ namespace RecrownedAthenaeum.Screens.MainMenu
book.AddPages(mainPage); book.AddPages(mainPage);
} }
public override void Initiate(GraphicsDevice graphicsDevice, Rectangle screenSize, Camera2D camera) public override void Initiate(Rectangle screenSize, Camera2D camera)
{ {
book.Initiate(camera, screenSize); book.Initiate(camera, screenSize);
base.Initiate(graphicsDevice, screenSize, camera); base.Initiate(screenSize, camera);
} }
public override void Show() public override void Show()

View File

@ -1,13 +1,7 @@
using Microsoft.Xna.Framework; using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Graphics;
using RecrownedAthenaeum.UI;
using RecrownedAthenaeum.ScreenSystem; using RecrownedAthenaeum.ScreenSystem;
using System; using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RecrownedAthenaeum.Screens.Transitions namespace RecrownedAthenaeum.Screens.Transitions
{ {
@ -74,12 +68,12 @@ namespace RecrownedAthenaeum.Screens.Transitions
curtain.Dispose(); curtain.Dispose();
} }
public bool EnteringTransition(double delta, bool assetsLoaded) public bool UpdateEnteringTransition(double delta, bool assetsLoaded)
{ {
return Fade((float)delta); return Fade((float)delta);
} }
public bool ExitingTransition(double delta, bool assetsLoaded) public bool UpdateExitingTransition(double delta, bool assetsLoaded)
{ {
return Fade((float)delta); return Fade((float)delta);
} }