using System; using System.Windows.Forms; using System.IO; namespace FalloutClient { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); if(args.Length==1&&args[0]=="-debugedit") { Application.Run(new DebugEditor(new EditorConnection())); } else { throw new Exception("Multiplayer is no longer supported"); } } } enum DataTypeSend { Mouse=0, LMouseDown=1, LMouseUp=2, RMouseDown=3, RMouseUp=4, TakeChar=5, ReleaseChar=6, SetGlobal=0, SetMapVar=1, RetrieveCritter=2, SetCritter=3, SetSGlobal=4, GetArray=9, SetArray=10, Exit=254 } }