using System; using System.Windows; using Conjure.Arcade.Overlay.Views; namespace Conjure.Arcade.Overlay { /// /// public class Program { /// /// Defines the entry point of the application. /// [STAThread] public static void Main(string[] args) { var logoPath = args.Length > 0 ? args[0] : "default_logo.png"; var application = new Application(); var mainWindow = new MainOverlayWindow(logoPath); application.Run(mainWindow); } } }