From aa4dcc05f592eca2414aedc0e2b2cf520a660299 Mon Sep 17 00:00:00 2001 From: glax Date: Mon, 15 Jan 2024 19:35:57 +0100 Subject: [PATCH] internal classes --- GSIConfigInstaller.cs | 2 +- GSIServer.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/GSIConfigInstaller.cs b/GSIConfigInstaller.cs index 51d62ab..d8d2f72 100644 --- a/GSIConfigInstaller.cs +++ b/GSIConfigInstaller.cs @@ -4,7 +4,7 @@ using Microsoft.Win32; namespace CS2GSI; -public class GsiConfigInstaller +internal class GsiConfigInstaller { internal static void InstallGsi() { diff --git a/GSIServer.cs b/GSIServer.cs index 1af325e..8f909d9 100644 --- a/GSIServer.cs +++ b/GSIServer.cs @@ -4,7 +4,7 @@ using System.Text; namespace CS2GSI; -public class GSIServer +internal class GSIServer { private HttpListener HttpListener { get; init; } internal delegate void OnMessageEventHandler(string content);