mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-06-12 21:27:44 +02:00
Add a MMC-depend field (soft/hard) for version checking
This commit is contained in:
@ -60,12 +60,21 @@ private:
|
||||
|
||||
public:
|
||||
QStringList extract_excludes;
|
||||
QString minVersion;
|
||||
|
||||
enum DependType
|
||||
{
|
||||
Soft,
|
||||
Hard
|
||||
};
|
||||
DependType dependType;
|
||||
|
||||
public:
|
||||
/// Constructor
|
||||
OneSixLibrary(const QString &name)
|
||||
OneSixLibrary(const QString &name, const DependType type = Soft)
|
||||
{
|
||||
m_name = name;
|
||||
dependType = type;
|
||||
}
|
||||
|
||||
/// Returns the raw name field
|
||||
|
Reference in New Issue
Block a user