Add Ornithe, LegacyFabric and Rift mod loader filters

Signed-off-by: moehreag <moehreag@gmail.com>
This commit is contained in:
moehreag
2025-08-05 10:27:49 +02:00
parent 79b7e277f1
commit 100b209043
7 changed files with 59 additions and 7 deletions

View File

@@ -38,7 +38,10 @@ enum ModLoaderType {
Quilt = 1 << 5,
DataPack = 1 << 6,
Babric = 1 << 7,
BTA = 1 << 8
BTA = 1 << 8,
LegacyFabric = 1 << 9,
Ornithe = 1 << 10,
Rift = 1 << 11
};
Q_DECLARE_FLAGS(ModLoaderTypes, ModLoaderType)
QList<ModLoaderType> modLoaderTypesToList(ModLoaderTypes flags);