mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-15 06:41:21 +00:00
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
19 lines
446 B
C#
Executable file
19 lines
446 B
C#
Executable file
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace FSO.Server.Debug
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
//Application.Run(new NetworkDebugger());
|
|
}
|
|
}
|
|
}
|