using System; using System.Collections.Generic; using System.Windows.Forms; using Rmake.Framework.Logging; using Rmake.GUI.Engine; using Rmake.GUI.Editor; namespace Editor { static class Program { /// /// アプリケーションのメイン エントリ ポイントです。 /// [STAThread] static void Main() { Logger.StartLog("RmakeEditor の起動"); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); // TODO: Application.Run(new RmakeEditor()); Logger.Info("-----------------------------------------------------"); Logger.Info("RmakeEditor の終了"); Logger.Info("-----------------------------------------------------"); Logger.Info(""); } } }