generated from NeoForgeMDKs/MDK-1.21-ModDevGradle
-
Notifications
You must be signed in to change notification settings - Fork 0
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
8 changed files
with
65 additions
and
6 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
4 changes: 2 additions & 2 deletions
4
src/generated/resources/.cache/1bda0eb39dbc3800081e5f8528c492e5d2ac1dc9
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,2 +1,2 @@ | ||
// 1.21 2024-07-27T18:17:17.9907487 Languages: en_us for mod: assorted_armaments | ||
ff350f66c8f4d491c19b2203c10bec93a040f10d assets/assorted_armaments/lang/en_us.json | ||
// 1.21 2024-07-28T12:13:49.762495 Languages: en_us for mod: assorted_armaments | ||
2833a3c34e77fcb13d1ab5c219dabc4008b94982 assets/assorted_armaments/lang/en_us.json |
4 changes: 2 additions & 2 deletions
4
src/generated/resources/.cache/e31f75891746f095f78065a964298b59b7cd2c16
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,2 +1,2 @@ | ||
// 1.21 2024-07-27T18:17:17.9907487 Languages: zh_cn for mod: assorted_armaments | ||
cfe63087b401f7108dba47cfb36c5341cba7294e assets/assorted_armaments/lang/zh_cn.json | ||
// 1.21 2024-07-28T12:13:49.762495 Languages: zh_cn for mod: assorted_armaments | ||
e4393033239b758971bd2805ad0b50ee07261a2e assets/assorted_armaments/lang/zh_cn.json |
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
17 changes: 17 additions & 0 deletions
17
src/main/java/team/leomc/assortedarmaments/AssortedArmamentsClient.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,17 @@ | ||
package team.leomc.assortedarmaments; | ||
|
||
import net.neoforged.api.distmarker.Dist; | ||
import net.neoforged.api.distmarker.OnlyIn; | ||
import net.neoforged.bus.api.IEventBus; | ||
import net.neoforged.fml.ModContainer; | ||
import net.neoforged.fml.common.Mod; | ||
import net.neoforged.neoforge.client.gui.ConfigurationScreen; | ||
import net.neoforged.neoforge.client.gui.IConfigScreenFactory; | ||
|
||
@OnlyIn(Dist.CLIENT) | ||
@Mod(value = AssortedArmaments.ID, dist = Dist.CLIENT) | ||
public class AssortedArmamentsClient { | ||
public AssortedArmamentsClient(IEventBus modBus, ModContainer container) { | ||
container.registerExtensionPoint(IConfigScreenFactory.class, ConfigurationScreen::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