Files
PCK-Studio/MinecraftUSkinEditor/Forms/Additional-Popups/programInfo.cs
MattNL 3b3c9b385d Numerous changes
Audio Editor has been patched up some more and a new category combining feature has been introduced. Fixed a few bus and typos on the Main Form too. Added myself to the credits and general project info. (:
2022-02-09 19:15:25 -05:00

36 lines
653 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 PckStudio
{
public partial class programInfo : MetroFramework.Forms.MetroForm
{
public programInfo()
{
InitializeComponent();
}
private void programInfo_Load(object sender, EventArgs e)
{
}
private void pictureBox1_Click(object sender, EventArgs e)
{
}
private void metroLabel1_Click(object sender, EventArgs e)
{
}
}
}