added basic image ui module

This commit is contained in:
2018-11-12 19:54:33 -06:00
parent 52c90498b9
commit e00f89325d
4 changed files with 39 additions and 9 deletions

View File

@@ -0,0 +1,26 @@
using Microsoft.Xna.Framework.Graphics;
using RhythmBullet.Zer01HD.UI.Modular;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RhythmBullet.Zer01HD.Utilities.UI.Modular.Modules
{
class Image : UIModule
{
Texture2D texture;
public Image(Texture2D texture)
{
this.texture = texture;
}
public override void Draw(SpriteBatch batch)
{
batch.Draw(texture, Bounds, Color);
base.Draw(batch);
}
}
}

View File

@@ -7,7 +7,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RhythmBullet.Zer01HD.UI.Modular
namespace RhythmBullet.Zer01HD.UI.Modular.Modules
{
public class Text : UIModule
{