forked from tony1223/PakViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
23 lines (20 loc) · 686 Bytes
/
Copy pathProgram.cs
File metadata and controls
23 lines (20 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Text;
using Eto;
using Eto.Forms;
namespace PakViewer
{
internal static class Program
{
[STAThread]
private static void Main(string[] args)
{
// Register Big5, GB2312, Shift_JIS, EUC-KR etc. encoding support
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
// CLI mode - not implemented in cross-platform version
// Use the AnalyzeMTil tool or Lin.Helper.Core library directly for CLI operations
// GUI mode - use Eto.Forms for cross-platform
new Application(Platform.Detect).Run(new MainForm());
}
}
}