rhythmbullet/RhythmBullet/Zer01HD/UI/Screen/Screen.cs

39 lines
565 B
C#
Raw Normal View History

2018-09-11 05:05:34 +00:00
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RhythmBullet.Zer01HD.UI.Screen
{
2018-09-12 06:32:05 +00:00
class Screen
2018-09-11 05:05:34 +00:00
{
public void Update(GameTime gameTime)
{
2018-09-11 05:05:34 +00:00
}
public void Draw(SpriteBatch spriteBatch)
{
}
public void Show()
{
}
public void Hide()
{
}
public void resize()
{
}
2018-09-11 05:05:34 +00:00
}
}