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