Split off highly version-dependent code from ModCompat

This commit is contained in:
Jonas Herzig
2021-02-22 23:56:22 +01:00
parent 029b228b26
commit 6094422792
6 changed files with 127 additions and 78 deletions

View File

@@ -0,0 +1,11 @@
package com.replaymod.core.utils;
import com.replaymod.replaystudio.data.ModInfo;
import java.util.Collection;
class ModInfoGetter {
static Collection<ModInfo> getInstalledNetworkMods() {
throw new UnsupportedOperationException();
}
}