-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Combatify 1.2.0 1.20.5-rc2 Beta 5 - CookeyMod, Atlas Config completio…
…n (need translations and tooltips still due to it being decades since the last translation update)
- Loading branch information
1 parent
d9ace45
commit 8342b49
Showing
59 changed files
with
2,645 additions
and
119 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
14 changes: 14 additions & 0 deletions
14
src/main/java/net/atlas/combatify/annotation/mixin/Incompatible.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,14 @@ | ||
package net.atlas.combatify.annotation.mixin; | ||
|
||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Target; | ||
|
||
@Target(ElementType.TYPE) | ||
public @interface Incompatible { | ||
/** | ||
* Declares certain mods incompatible with a mixin. | ||
* All mod ids listed here will prevent the mixin from loading | ||
* if they are active in the environment. | ||
*/ | ||
String[] value() default ""; | ||
} |
14 changes: 14 additions & 0 deletions
14
src/main/java/net/atlas/combatify/annotation/mixin/ModSpecific.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,14 @@ | ||
package net.atlas.combatify.annotation.mixin; | ||
|
||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Target; | ||
|
||
@Target(ElementType.TYPE) | ||
public @interface ModSpecific { | ||
/** | ||
* Declares a mod-specific mixin. | ||
* Mixins marked with this annotation will only load if one | ||
* of the mod ids listed here is present in the environment. | ||
*/ | ||
String[] value() default ""; | ||
} |
Oops, something went wrong.