generated from GenerationsMod/GenerationsModuleTemplateOld
-
Notifications
You must be signed in to change notification settings - Fork 1
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
2 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
...ain/java/generations/gg/generations/structures/generationsstructures/integration/BWG.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,48 @@ | ||
package generations.gg.generations.structures.generationsstructures.integration; | ||
|
||
import net.minecraft.world.level.block.Block; | ||
import net.potionstudios.biomeswevegone.BiomesWeveGone; | ||
import net.potionstudios.biomeswevegone.world.level.block.BWGBlocks; | ||
import org.jetbrains.annotations.Nullable; | ||
|
||
public class BWG implements Integration { | ||
@Override | ||
public @Nullable String getModId() { | ||
return BiomesWeveGone.MOD_ID; | ||
} | ||
|
||
@Override | ||
public Block getBirchTrapdoorReplacement() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public Block getGhostTrapdoorReplacement() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public Block getOakLeavesReplacement() { | ||
return BWGBlocks.FLOWERING_ORCHARD_LEAVES.get(); | ||
} | ||
|
||
@Override | ||
public Block getMirroredFloorReplacement() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public Block getRedTulipReplacement() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public Block getPinkTulipReplacement() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public Block getWhiteCastleBrick2SetSlabReplacement() { | ||
return null; | ||
} | ||
} |
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