added basic and normal mortar recipes, begin object code and debug command for mathematical formulas

master
Soper Aylamo 2021-05-04 06:48:08 -04:00
parent b6bf0d2a67
commit 98b0abf421
Signed by: Soper
GPG Key ID: A27AC885ACC3BEAE
6 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,2 @@
package xyz.soper.arty.debug;public class DebugCommand {
}

View File

@ -0,0 +1,14 @@
package xyz.soper.arty.item;
import org.bukkit.Location;
import org.bukkit.block.Block;
public class Mortar {
Location location;
Mortar(Block mortar){
location = mortar.getLocation();
}
}

View File

@ -0,0 +1,4 @@
package xyz.soper.arty.Items;
public class MortarTuner {
}

View File

@ -0,0 +1,2 @@
package xyz.soper.arty.item;public class NormalMortar {
}

View File

@ -0,0 +1,4 @@
package xyz.soper.arty.Blocks;
public class MortarHandler {
}