reorganization, and skeleton of camera system.

This commit is contained in:
2018-11-11 14:44:30 -06:00
parent f3a3d31ad8
commit 3c44a52a8f
9 changed files with 32 additions and 8 deletions

View File

@@ -6,7 +6,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RhythmBullet.Zer01HD.Utilities.UI.ScreenSystem
namespace RhythmBullet.Zer01HD.Utilities.ScreenSystem
{
public interface ITransition
{

View File

@@ -3,7 +3,7 @@ using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using System;
namespace RhythmBullet.Zer01HD.Utilities.UI.ScreenSystem
namespace RhythmBullet.Zer01HD.Utilities.ScreenSystem
{
class LoadingScreen : Screen, ITransition
{

View File

@@ -6,7 +6,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RhythmBullet.Zer01HD.Utilities.UI.ScreenSystem
namespace RhythmBullet.Zer01HD.Utilities.ScreenSystem
{
public enum ScreenState { EnterTransition, ExitTransition, Normal }