1
0
mirror of synced 2025-03-02 00:20:37 +01:00

27 lines
599 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.Threading.Tasks;
using System.Windows.Forms;
using Switch_Toolbox.Library;
using Switch_Toolbox.Library.Rendering;
namespace FirstPlugin
{
public partial class TextureOpenEditor : Form
{
public TextureOpenEditor()
{
InitializeComponent();
}
public void LoadTexture(STGenericTexture tex)
{
RenderableTex renderedTex = tex.RenderableTex;
}
}
}