Skip to content

Commit

Permalink
Seems like it becomes an issue if the API depends on Fabric API? I do…
Browse files Browse the repository at this point in the history
…n't understand anything in the world
  • Loading branch information
floral-qua-floral committed Nov 20, 2024
1 parent a08f6a4 commit cf2f34b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 6 additions & 1 deletion api/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
plugins {
id 'fabric-loom' version '1.8-SNAPSHOT'
id 'java'
id 'maven-publish'
}

group = 'com.floralquafloral' // Customize with your mod's group ID
version = '1.0.0' // API version


dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
}

publishing {
publications {
Expand Down
3 changes: 3 additions & 0 deletions api/src/main/java/com/floralquafloral/PlayerPooper.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
package com.floralquafloral;


import net.minecraft.entity.player.PlayerEntity;

public interface PlayerPooper {
void stinky();
PlayerEntity getStinker();
}

0 comments on commit cf2f34b

Please sign in to comment.