aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorTechnus <daniel112092@gmail.com>2019-07-21 21:18:05 +0200
committerTechnus <daniel112092@gmail.com>2019-07-21 21:18:05 +0200
commitef951d663fcd41b2e5064acdbb3596146fc6eabe (patch)
tree14b0ed1dd3735963e8aaf730718cab123fac8a21 /src/main
parente43e926680d3150e5e795538975577a662a0ee85 (diff)
downloadGT5-Unofficial-ef951d663fcd41b2e5064acdbb3596146fc6eabe.tar.gz
GT5-Unofficial-ef951d663fcd41b2e5064acdbb3596146fc6eabe.tar.bz2
GT5-Unofficial-ef951d663fcd41b2e5064acdbb3596146fc6eabe.zip
Include avrcore
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();
+ }
+}