Files
minecraft-modpack-updater/ModpackUpdater.Manager/MinecraftProfileChecker.cs
2024-06-18 10:56:32 +02:00

11 lines
257 B
C#

namespace ModpackUpdater.Manager;
public class MinecraftProfileChecker
{
public static bool CheckProfile(string folderPath)
{
// Todo: Adds some checks to verify, if the current folder is a minecraft folder.
return true;
}
}