cemu-DS4Windows/DS4Service/ProjectInstaller.cs
jays2kings df43fd0d74 Revised Custom Mapping
I kinda just felt like doing it :P wanted to test myself,
trying to make a cleaner UI
2014-03-27 21:50:40 -04:00

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();
}
}
}