began working on main page; furthered UI structure

This commit is contained in:
2018-09-11 13:22:15 -05:00
parent bce143efbb
commit 073f3a205d
4 changed files with 24 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
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 MainPage : Page
{
public MainPage(int pageX, int pageY) : base(pageX, pageY)
{
}
}
}