-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
18 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 2 additions & 8 deletions
10
rei-bridge/src/main/java/dev/su5ed/sinytra/connectorextras/reibridge/REIBridge.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,8 @@ | ||
package dev.su5ed.sinytra.connectorextras.reibridge; | ||
|
||
import com.google.common.base.Suppliers; | ||
import me.shedaniel.rei.fabric.PluginDetectorImpl; | ||
import me.shedaniel.rei.impl.init.PluginDetector; | ||
import net.minecraftforge.fml.common.Mod; | ||
|
||
import java.util.function.Supplier; | ||
|
||
@Mod(REIBridge.MODID) | ||
@Mod("connectorextras_rei_bridge") | ||
public class REIBridge { | ||
public static final String MODID = "connectorextras_rei_bridge"; | ||
public static final Supplier<PluginDetector> FABRIC_PLUGIN_DETECTOR = Suppliers.memoize(PluginDetectorImpl::new); | ||
|
||
} |
11 changes: 11 additions & 0 deletions
11
rei-bridge/src/main/java/dev/su5ed/sinytra/connectorextras/reibridge/REIBridgeSetup.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package dev.su5ed.sinytra.connectorextras.reibridge; | ||
|
||
import com.google.common.base.Suppliers; | ||
import me.shedaniel.rei.fabric.PluginDetectorImpl; | ||
import me.shedaniel.rei.impl.init.PluginDetector; | ||
|
||
import java.util.function.Supplier; | ||
|
||
public final class REIBridgeSetup { | ||
public static final Supplier<PluginDetector> FABRIC_PLUGIN_DETECTOR = Suppliers.memoize(PluginDetectorImpl::new); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters