namespace refactor & progress on texture atlas

This commit is contained in:
2018-12-04 07:45:09 -06:00
parent 698dd9d2f0
commit b4ddd73f67
28 changed files with 95 additions and 52 deletions

View File

@@ -1,15 +1,15 @@
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using RhythmBullet.Utilities.Camera;
using RecrownedAthenaeum.Camera;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RhythmBullet.UI.Book
namespace RecrownedAthenaeum.UI.Book
{
class Book
public class Book
{
Camera2D camera;
Page targetPage;

View File

@@ -1,16 +1,16 @@
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using RhythmBullet.UI.Modular;
using RhythmBullet.Utilities.Camera;
using RecrownedAthenaeum.UI.Modular;
using RecrownedAthenaeum.Camera;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RhythmBullet.UI.Book
namespace RecrownedAthenaeum.UI.Book
{
class Page : UIModuleGroup
public class Page : UIModuleGroup
{
private readonly int pageX, pageY;
public bool NeedsSizeUpdate;