This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated deps, removed amethyst shards from amethyst gem tag
- Loading branch information
Showing
5 changed files
with
36 additions
and
4 deletions.
There are no files selected for viewing
Submodule AntimatterAPI
updated
9 files
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
29 changes: 29 additions & 0 deletions
29
common/src/main/java/muramasa/gregtech/integration/tfc/TFCRegistrar.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,29 @@ | ||
package muramasa.gregtech.integration.tfc; | ||
|
||
import muramasa.antimatter.AntimatterAPI; | ||
import muramasa.antimatter.Ref; | ||
import muramasa.antimatter.registration.IAntimatterRegistrar; | ||
import muramasa.antimatter.registration.RegistrationEvent; | ||
import muramasa.antimatter.registration.Side; | ||
|
||
public class TFCRegistrar implements IAntimatterRegistrar { | ||
@Override | ||
public String getId() { | ||
return "tfc"; | ||
} | ||
|
||
@Override | ||
public void onRegistrationEvent(RegistrationEvent event, Side side) { | ||
|
||
} | ||
|
||
@Override | ||
public void onRegistrarInit() { | ||
|
||
} | ||
|
||
@Override | ||
public boolean isEnabled() { | ||
return AntimatterAPI.isModLoaded("tfc"); | ||
} | ||
} |
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