forked from GregTechCEu/Buildscripts
-
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
23 changed files
with
75 additions
and
54 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
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
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,9 @@ | ||
#Organize Import Order | ||
#Sat Jan 28 17:57:48 GMT 2023 | ||
0=java | ||
1=javax | ||
2=net | ||
3=org | ||
4=com | ||
5=gregtech | ||
6=gregicality | ||
7=com.github.gtexpert |
8 changes: 4 additions & 4 deletions
8
src/main/java/gtexpert/testmod/TestMod.java → .../com/github/gtexpert/testmod/TestMod.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
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,7 @@ | ||
package com.github.gtexpert.testmod.api; | ||
|
||
import com.github.gtexpert.testmod.Tags; | ||
|
||
public class ModValues { | ||
public static final String MODID = Tags.MODID; | ||
} |
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
...testmod/api/modules/IModuleContainer.java → ...testmod/api/modules/IModuleContainer.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,8 +1,8 @@ | ||
package gtexpert.testmod.api.modules; | ||
package com.github.gtexpert.testmod.api.modules; | ||
|
||
public interface IModuleContainer { | ||
/** | ||
* The ID of this container. If this is your mod's only container, you should use your mod ID to prevent collisions. | ||
*/ | ||
String getID(); | ||
} | ||
} |
4 changes: 2 additions & 2 deletions
4
...t/testmod/api/modules/IModuleManager.java → ...t/testmod/api/modules/IModuleManager.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
2 changes: 1 addition & 1 deletion
2
.../testmod/api/modules/ModuleContainer.java → .../testmod/api/modules/ModuleContainer.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
2 changes: 1 addition & 1 deletion
2
...pert/testmod/api/modules/ModuleStage.java → ...pert/testmod/api/modules/ModuleStage.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,4 @@ | ||
package gtexpert.testmod.api.modules; | ||
package com.github.gtexpert.testmod.api.modules; | ||
|
||
|
||
/** | ||
|
2 changes: 1 addition & 1 deletion
2
...gtexpert/testmod/api/modules/TModule.java → ...gtexpert/testmod/api/modules/TModule.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
2 changes: 1 addition & 1 deletion
2
...api/util/ModIncompatibilityException.java → ...api/util/ModIncompatibilityException.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,4 @@ | ||
package gtexpert.testmod.api.util; | ||
package com.github.gtexpert.testmod.api.util; | ||
|
||
import java.util.List; | ||
|
||
|
4 changes: 2 additions & 2 deletions
4
...ava/gtexpert/testmod/api/util/ModLog.java → ...hub/gtexpert/testmod/api/util/ModLog.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
4 changes: 2 additions & 2 deletions
4
...gtexpert/testmod/api/util/ModUtility.java → ...gtexpert/testmod/api/util/ModUtility.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
2 changes: 1 addition & 1 deletion
2
.../java/gtexpert/testmod/api/util/Mods.java → ...ithub/gtexpert/testmod/api/util/Mods.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
4 changes: 2 additions & 2 deletions
4
.../gtexpert/testmod/client/ClientProxy.java → .../gtexpert/testmod/client/ClientProxy.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
4 changes: 2 additions & 2 deletions
4
.../gtexpert/testmod/common/CommonProxy.java → .../gtexpert/testmod/common/CommonProxy.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
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: 3 additions & 3 deletions
6
...a/gtexpert/testmod/module/BaseModule.java → ...b/gtexpert/testmod/module/BaseModule.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: 3 additions & 3 deletions
6
...texpert/testmod/module/ModuleManager.java → ...texpert/testmod/module/ModuleManager.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: 3 additions & 3 deletions
6
...java/gtexpert/testmod/module/Modules.java → ...thub/gtexpert/testmod/module/Modules.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
This file was deleted.
Oops, something went wrong.