-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
e22ddf8
commit f384aed
Showing
4 changed files
with
27 additions
and
7 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
fabric/src/main/java/org/mtr/mapping/registry/RegistryHelper.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 org.mtr.mapping.registry; | ||
|
||
import org.mtr.mapping.holder.Identifier; | ||
|
||
// This is a very hacky way but I have no choice. | ||
public interface RegistryHelper | ||
{ | ||
static ItemRegistryObject RegistryObjectBlock2Item(BlockRegistryObject block, Identifier blockIdentifier) { | ||
return new ItemRegistryObject(block.get().asItem()); | ||
} | ||
} |
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
11 changes: 11 additions & 0 deletions
11
forge/src/main/java/org/mtr/mapping/registry/RegistryHelper.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 org.mtr.mapping.registry; | ||
|
||
import org.mtr.mapping.holder.Identifier; | ||
|
||
// This is a very hacky way but I have no choice. | ||
public interface RegistryHelper | ||
{ | ||
static ItemRegistryObject RegistryObjectBlock2Item(BlockRegistryObject block, Identifier blockIdentifier) { | ||
return new ItemRegistryObject(blockIdentifier); | ||
} | ||
} |