mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-23 01:39:17 +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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|