-
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
1 parent
56e6d96
commit cc5804d
Showing
6 changed files
with
21 additions
and
6 deletions.
There are no files selected for viewing
7 changes: 5 additions & 2 deletions
7
Common/src/testmod/java/dev/upcraft/sparkweave/testmod/SparkweaveTestmod.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
13 changes: 12 additions & 1 deletion
13
Common/src/testmod/java/dev/upcraft/sparkweave/testmod/client/SparkweaveTestmodClient.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
1 change: 1 addition & 0 deletions
1
...estmod/resources/META-INF/services/dev.upcraft.sparkweave.api.entrypoint.ClientEntryPoint
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 @@ | ||
dev.upcraft.sparkweave.testmod.client.SparkweaveTestmodClient |
1 change: 1 addition & 0 deletions
1
.../testmod/resources/META-INF/services/dev.upcraft.sparkweave.api.entrypoint.MainEntryPoint
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 @@ | ||
dev.upcraft.sparkweave.testmod.SparkweaveTestmod |
3 changes: 1 addition & 2 deletions
3
Fabric/src/testmod/java/dev/upcraft/sparkweave/testmod/fabric/entrypoint/Main.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,14 +1,13 @@ | ||
package dev.upcraft.sparkweave.testmod.fabric.entrypoint; | ||
|
||
import dev.upcraft.sparkweave.api.annotation.CalledByReflection; | ||
import dev.upcraft.sparkweave.testmod.SparkweaveTestmod; | ||
import net.fabricmc.api.ModInitializer; | ||
|
||
@CalledByReflection | ||
public class Main implements ModInitializer { | ||
|
||
@Override | ||
public void onInitialize() { | ||
SparkweaveTestmod.init(); | ||
|
||
} | ||
} |
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 |
---|---|---|
|
@@ -7,6 +7,6 @@ | |
public class Main { | ||
|
||
public Main() { | ||
SparkweaveTestmod.init(); | ||
|
||
} | ||
} |