removed unused imports and applied minor changes from RA.

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

View File

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