aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/com/github/technus/tectech/thing/tileEntity/MicroControllerTileEntity.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/main/java/com/github/technus/tectech/thing/tileEntity/MicroControllerTileEntity.java b/src/main/java/com/github/technus/tectech/thing/tileEntity/MicroControllerTileEntity.java
new file mode 100644
index 0000000000..798a2daa47
--- /dev/null
+++ b/src/main/java/com/github/technus/tectech/thing/tileEntity/MicroControllerTileEntity.java
@@ -0,0 +1,26 @@
+package com.github.technus.tectech.thing.tileEntity;
+
+import net.minecraft.nbt.NBTTagCompound;
+import net.minecraft.tileentity.TileEntity;
+
+public class MicroControllerTileEntity extends TileEntity {
+ @Override
+ public void readFromNBT(NBTTagCompound p_145839_1_) {
+ super.readFromNBT(p_145839_1_);
+ }
+
+ @Override
+ public void writeToNBT(NBTTagCompound p_145841_1_) {
+ super.writeToNBT(p_145841_1_);
+ }
+
+ @Override
+ public void invalidate() {
+ super.invalidate();
+ }
+
+ @Override
+ public void updateEntity() {
+ super.updateEntity();
+ }
+}