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

32 lines
617 B
C#

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
{
public class Page
{
private readonly int pageX, pageY;
public readonly int xPos, yPos;
public Page(int pageX, int pageY)
{
this.pageX = pageX;
this.pageY = pageY;
}
public void Update(GameTime gameTime)
{
}
public void Draw(SpriteBatch batch)
{
}
}
}