Files
Nitrox/Nitrox.Launcher/Models/Utils/QModHelper.cs
2025-07-06 00:23:46 +02:00

13 lines
353 B
C#

using System.IO;
namespace Nitrox.Launcher.Models.Utils;
internal static class QModHelper
{
internal static bool IsQModInstalled(string subnauticaBasePath)
{
string subnauticaQModManagerPath = Path.Combine(subnauticaBasePath, "Bepinex", "plugins", "QModManager");
return Directory.Exists(subnauticaQModManagerPath);
}
}