mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 00:35:37 +00:00
39 lines
908 B
C#
39 lines
908 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;
|
|
|
|
namespace MinecraftUSkinEditor
|
|
{
|
|
public partial class addMeta : MetroFramework.Forms.MetroForm
|
|
{
|
|
PCK currentPCK;
|
|
PCK.MineFile file;
|
|
|
|
public addMeta(PCK.MineFile fileIn, PCK currentPCKIn)
|
|
{
|
|
InitializeComponent();
|
|
file = fileIn;
|
|
currentPCK = currentPCKIn;
|
|
FormBorderStyle = FormBorderStyle.None;
|
|
}
|
|
|
|
private void button1_Click(object sender, EventArgs e)
|
|
{
|
|
object[] obj = { textBox1.Text, textBox2.Text };
|
|
file.entries.Add(obj);
|
|
this.Close();
|
|
}
|
|
|
|
private void addMeta_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|