11 lines
257 B
C#
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;
|
|
}
|
|
} |