conjure-os-overlay/Program.cs
2025-10-10 18:26:49 -04:00

23 lines
605 B
C#

using System;
using System.Windows;
using Conjure.Arcade.Overlay.Views;
namespace Conjure.Arcade.Overlay
{
/// <summary>
/// </summary>
public class Program
{
/// <summary>
/// Defines the entry point of the application.
/// </summary>
[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);
}
}
}