-
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
Showing
8 changed files
with
39 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,7 @@ | |
|
||
@Mod(KessokuBase.MOD_ID) | ||
public class KessokuBaseEntrypoint { | ||
public KessokuBaseEntrypoint() { | ||
|
||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
event-base-common/src/main/java/band/kessoku/lib/event/KessokuEventBase.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,5 @@ | ||
package band.kessoku.lib.event; | ||
|
||
public class KessokuEventBase { | ||
public static final String MOD_ID = "kessoku_event_base"; | ||
} |
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
2 changes: 1 addition & 1 deletion
2
...ava/band/kessoku/lib/event/EventImpl.java → ...and/kessoku/lib/event/impl/EventImpl.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
6 changes: 6 additions & 0 deletions
6
event-base-neo/src/main/java/band/kessoku/lib/event/KessokuEventBaseEntrypoint.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,4 +1,10 @@ | ||
package band.kessoku.lib.event; | ||
|
||
import net.neoforged.fml.common.Mod; | ||
|
||
@Mod(KessokuEventBase.MOD_ID) | ||
public class KessokuEventBaseEntrypoint { | ||
public KessokuEventBaseEntrypoint() { | ||
|
||
} | ||
} |
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
5 changes: 5 additions & 0 deletions
5
registry-neo/src/main/java/band/kessoku/lib/registry/KessokuRegistryEntrypoint.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,7 +1,12 @@ | ||
package band.kessoku.lib.registry; | ||
|
||
import band.kessoku.lib.registry.impl.RegistryImpl; | ||
import net.neoforged.bus.api.IEventBus; | ||
import net.neoforged.fml.common.Mod; | ||
|
||
@Mod(KessokuRegistry.MOD_ID) | ||
public class KessokuRegistryEntrypoint { | ||
public KessokuRegistryEntrypoint(IEventBus modEventBus) { | ||
new RegistryImpl().registerEvent(modEventBus); | ||
} | ||
} |
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