Skip to content

Commit

Permalink
tmi
Browse files Browse the repository at this point in the history
  • Loading branch information
liplum committed Jun 4, 2024
1 parent a439e3c commit daf9e2f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ plugins {
`maven-publish`
id("io.github.liplum.mgpp")
}
repositories {
mavenCentral()
maven {
url = uri("https://jitpack.io")
}
}
sourceSets {
main {
java.srcDir("src")
Expand All @@ -22,6 +28,8 @@ dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.2")
testImplementation("com.github.liplum:TestUtils:v0.1")
// For Too many items: https://github.com/EB-wilson/TooManyItems
compileOnly("com.github.EB-wilson:TooManyItems:2.2")
}

java {
Expand Down
15 changes: 15 additions & 0 deletions lib/src/multicraft/TmiRecipeEntry.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package multicraft;

import tmi.RecipeEntry;

public class TmiRecipeEntry extends RecipeEntry {
@Override
public void afterInit() {

}

@Override
public void init() {

}
}

0 comments on commit daf9e2f

Please sign in to comment.