From 2042a829da3c75ffc5e5dc6c8a45a3a741611db7 Mon Sep 17 00:00:00 2001 From: HorizonCode Date: Thu, 27 May 2021 06:02:37 +0200 Subject: [PATCH] Refractored Class Util to OsuUtil --- EZPPClient Installer/MainWindow.xaml.cs | 2 +- EZPPClient Installer/{Util.cs => OsuUtil.cs} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename EZPPClient Installer/{Util.cs => OsuUtil.cs} (98%) diff --git a/EZPPClient Installer/MainWindow.xaml.cs b/EZPPClient Installer/MainWindow.xaml.cs index 4bd422c..c99ecc9 100644 --- a/EZPPClient Installer/MainWindow.xaml.cs +++ b/EZPPClient Installer/MainWindow.xaml.cs @@ -62,7 +62,7 @@ namespace EZPPClient_Installer string versionString = "v" + VERSION; InstallerWindow.Title = "EZPPClient Installer " + versionString.Replace(",", "."); - string osuPath = Util.osuInstallDir(); + string osuPath = OsuUtil.osuInstallDir(); if (osuPath.EndsWith(@"\EZPPClient")) { diff --git a/EZPPClient Installer/Util.cs b/EZPPClient Installer/OsuUtil.cs similarity index 98% rename from EZPPClient Installer/Util.cs rename to EZPPClient Installer/OsuUtil.cs index e469e4e..334ebc8 100644 --- a/EZPPClient Installer/Util.cs +++ b/EZPPClient Installer/OsuUtil.cs @@ -9,7 +9,7 @@ using Microsoft.Win32; namespace EZPPClient_Installer { - class Util + class OsuUtil { public static string osuInstallDir() {