rhythmbullet/RhythmBullet/Zer01HD/UI/Page/Page.cs

30 lines
459 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
{
class Page
{
private int x, y;
public Page()
{
}
public void Update(GameTime gameTime)
{
}
public void Draw(SpriteBatch batch)
{
}
}
}