mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-03-21 17:34:29 -05:00
19 lines
423 B
C#
19 lines
423 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Configuration.Install;
|
|
using System.Linq;
|
|
|
|
namespace PkmnFoundations.GlobalTerminalService
|
|
{
|
|
[RunInstaller(true)]
|
|
public partial class ProjectInstaller : System.Configuration.Install.Installer
|
|
{
|
|
public ProjectInstaller()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|