1
0
mirror of synced 2024-11-14 08:57:34 +01:00
TaikoSoundEditor/Program.cs
NotImplementedLife 1ff7354141 first commit
2023-07-17 11:20:00 +03:00

31 lines
879 B
C#

using System.Diagnostics;
namespace TaikoSoundEditor
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
/*var tja = new TJA(File.ReadAllLines($@"C:\Users\NotImpLife\Desktop\nus\EXAMPLE .TJA\hoshis\hoshis.tja"));
File.WriteAllText("tja.txt", tja.ToString());
for (int i = 0; i < 4; i++)
{
var c = tja.Courses[i].Converted;
Debug.WriteLine(i+" "+c.Notes.Length);
//Debug.WriteLine(c.Events.Length);
}
return;*/
//File.WriteAllText("tja.txt", tja.ToString());
ApplicationConfiguration.Initialize();
Application.Run(new MainForm());
}
}
}