1
0
mirror of synced 2024-11-24 04:20:10 +01:00
TaikoSoundEditor/Program.cs

27 lines
703 B
C#
Raw Normal View History

2023-07-17 10:20:00 +02:00
using System.Diagnostics;
2023-07-19 07:10:25 +02:00
using System.Globalization;
2023-07-21 19:02:02 +02:00
using System.Text;
2023-09-18 17:53:43 +02:00
using TaikoSoundEditor.Data;
using TaikoSoundEditor.Utils;
2023-07-17 10:20:00 +02:00
namespace TaikoSoundEditor
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
2023-08-16 18:40:36 +02:00
{
2023-07-21 19:02:02 +02:00
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
2023-07-19 07:10:25 +02:00
CultureInfo.CurrentCulture = CultureInfo.InvariantCulture;
2023-08-16 18:40:36 +02:00
2023-09-18 17:53:43 +02:00
SSL.LoadKeys();
2023-08-16 18:40:36 +02:00
2023-07-17 10:20:00 +02:00
ApplicationConfiguration.Initialize();
Application.Run(new MainForm());
}
}
}