Loading screen base set up.
This commit is contained in:
27
RhythmBullet/Zer01HD/Game/LoadingScreen.cs
Normal file
27
RhythmBullet/Zer01HD/Game/LoadingScreen.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using Microsoft.Xna.Framework;
|
||||
using Microsoft.Xna.Framework.Content;
|
||||
using Microsoft.Xna.Framework.Graphics;
|
||||
using RhythmBullet.Zer01HD.UI;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace RhythmBullet.Zer01HD.Game
|
||||
{
|
||||
class LoadingScreen : Screen
|
||||
{
|
||||
Texture2D recrown;
|
||||
public LoadingScreen(Texture2D recrown)
|
||||
{
|
||||
this.recrown = recrown;
|
||||
}
|
||||
|
||||
public override void Draw(SpriteBatch spriteBatch)
|
||||
{
|
||||
spriteBatch.Draw(recrown, recrown.Bounds, Color.White);
|
||||
base.Draw(spriteBatch);
|
||||
}
|
||||
}
|
||||
}
|
20
RhythmBullet/Zer01HD/Game/MainScreen/MainScreen.cs
Normal file
20
RhythmBullet/Zer01HD/Game/MainScreen/MainScreen.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Microsoft.Xna.Framework.Graphics;
|
||||
using RhythmBullet.Zer01HD.UI;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace RhythmBullet.Zer01HD.Game.MainScreen
|
||||
{
|
||||
class MainScreen : Screen
|
||||
{
|
||||
Viewport viewport = new Viewport();
|
||||
|
||||
public MainScreen()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user