Push work in progress files
This commit is contained in:
parent
aadb2a5bf5
commit
d65bbe2f06
7 changed files with 30 additions and 1 deletions
|
@ -124,6 +124,8 @@ dependencies {
|
|||
implementation fg.deobf("dev.zontreck:libzontreck:${libz_version}:dev")
|
||||
compileOnly fg.deobf("dev.zontreck:libzontreck:${libz_version}:dev")
|
||||
runtimeOnly fg.deobf("dev.zontreck:libzontreck:${libz_version}")
|
||||
|
||||
compileOnly "net.luckperms:api:${luckperms_version}"
|
||||
// compile against the JEI API but do not include it at runtime
|
||||
//compileOnly fg.deobf("mezz.jei:jei-${mc_version}-forge-api:${jei_version}")
|
||||
// at runtime, use the full JEI jar
|
||||
|
|
|
@ -8,3 +8,4 @@ my_version=1.3.5.1
|
|||
mc_version=1.19.2
|
||||
forge_version=43.2.3
|
||||
libz_version=1.0.2.1
|
||||
luckperms_version=5.4
|
|
@ -0,0 +1,5 @@
|
|||
package dev.zontreck.otemod.commands.zschem;
|
||||
|
||||
public class LoadSchem {
|
||||
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
package dev.zontreck.otemod.commands.zschem;
|
||||
|
||||
// This command will place the loaded schematic in world. The schematic will originate from position 1. The positions are relative and are added onto position 1.
|
||||
public class Place {
|
||||
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
package dev.zontreck.otemod.commands.zschem;
|
||||
|
||||
public class SaveSchem {
|
||||
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
package dev.zontreck.otemod.commands.zschem;
|
||||
|
||||
public class SetPos1 {
|
||||
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
package dev.zontreck.otemod.commands.zschem;
|
||||
|
||||
public class SetPos2 {
|
||||
|
||||
}
|
Reference in a new issue