EveryFileExplorer/CommonFiles/UI/WAVEPlayer.cs
2014-11-04 16:22:45 +01:00

22 lines
360 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 CommonFiles.UI
{
public partial class WAVEPlayer : Form
{
WAV Wave;
public WAVEPlayer(WAV Wave)
{
this.Wave = Wave;
InitializeComponent();
}
}
}