EveryFileExplorer/3DS/UI/ThemeViewer.cs
Clienthax 43275f9718 remove debug stuff in theme code.
Signed-off-by: Clienthax <clienthax@gmail.com>
2014-11-14 18:36:57 +00:00

31 lines
639 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace _3DS.UI
{
public partial class ThemeViewer : Form
{
ThemeFile theme;
public ThemeViewer(ThemeFile themeFile)
{
theme = themeFile;
InitializeComponent();
}
private void ThemeViewer_Load(object sender, EventArgs e)
{
topTextureImage.Image = theme.GetTopTexture();
bottomTextureImage.Image = theme.GetBottomTexture();
}
}
}