added basic and normal mortar recipes, begin object code and debug command for mathematical formulas
This commit is contained in:
parent
b6bf0d2a67
commit
98b0abf421
2
src/xyz/soper/arty/debug/DebugCommand.java
Normal file
2
src/xyz/soper/arty/debug/DebugCommand.java
Normal file
@ -0,0 +1,2 @@
|
||||
package xyz.soper.arty.debug;public class DebugCommand {
|
||||
}
|
14
src/xyz/soper/arty/item/BaseMortar.java
Normal file
14
src/xyz/soper/arty/item/BaseMortar.java
Normal 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();
|
||||
}
|
||||
|
||||
}
|
4
src/xyz/soper/arty/item/MortarTuner.java
Normal file
4
src/xyz/soper/arty/item/MortarTuner.java
Normal file
@ -0,0 +1,4 @@
|
||||
package xyz.soper.arty.Items;
|
||||
|
||||
public class MortarTuner {
|
||||
}
|
2
src/xyz/soper/arty/item/NormalMortar.java
Normal file
2
src/xyz/soper/arty/item/NormalMortar.java
Normal file
@ -0,0 +1,2 @@
|
||||
package xyz.soper.arty.item;public class NormalMortar {
|
||||
}
|
4
src/xyz/soper/arty/util/MortarHandler.java
Normal file
4
src/xyz/soper/arty/util/MortarHandler.java
Normal file
@ -0,0 +1,4 @@
|
||||
package xyz.soper.arty.Blocks;
|
||||
|
||||
public class MortarHandler {
|
||||
}
|
Loading…
Reference in New Issue
Block a user