mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-24 02:25:30 +00:00
Additions ---------- -WAV drag and drop -BINKA File location verification -Feature to combine your Creative world tracks with a checkbox in the editor
22 lines
399 B
C#
22 lines
399 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 MetroFramework.Forms;
|
|
|
|
namespace PckStudio.Forms.Utilities.Audio
|
|
{
|
|
public partial class pleaseWait : MetroForm
|
|
{
|
|
public pleaseWait()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|