Swap the API packages
The new one is now built for the api jar and the old one is now internal. It will slowly be moved around to sane places within the internal code. Most of the features provided in the old "api" are addon specific features which will generally rely on the main jar anyways. The new API will be specific to compatibility features, such as blacklists, recipes, and value modification.
This commit is contained in:
parent
4fbcac6aa2
commit
ddaadfbe52
421 changed files with 1006 additions and 999 deletions
12
src/main/java/WayofTime/bloodmagic/api/BloodMagicPlugin.java
Normal file
12
src/main/java/WayofTime/bloodmagic/api/BloodMagicPlugin.java
Normal file
|
@ -0,0 +1,12 @@
|
|||
package WayofTime.bloodmagic.api;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target(ElementType.TYPE)
|
||||
public @interface BloodMagicPlugin {
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue