mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2025-02-12 06:18:51 +01:00
16 lines
320 B
C#
16 lines
320 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Configuration.Install;
|
|
|
|
namespace DS4Service
|
|
{
|
|
[RunInstaller(true)]
|
|
public partial class ProjectInstaller : System.Configuration.Install.Installer
|
|
{
|
|
public ProjectInstaller()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|