diff options
author | Technus <daniel112092@gmail.com> | 2019-07-21 21:18:05 +0200 |
---|---|---|
committer | Technus <daniel112092@gmail.com> | 2019-07-21 21:18:05 +0200 |
commit | ef951d663fcd41b2e5064acdbb3596146fc6eabe (patch) | |
tree | 14b0ed1dd3735963e8aaf730718cab123fac8a21 | |
parent | e43e926680d3150e5e795538975577a662a0ee85 (diff) | |
download | GT5-Unofficial-ef951d663fcd41b2e5064acdbb3596146fc6eabe.tar.gz GT5-Unofficial-ef951d663fcd41b2e5064acdbb3596146fc6eabe.tar.bz2 GT5-Unofficial-ef951d663fcd41b2e5064acdbb3596146fc6eabe.zip |
Include avrcore
-rw-r--r-- | .gitmodules | 3 | ||||
m--------- | AVRcore | 0 | ||||
-rw-r--r-- | build.gradle | 9 | ||||
-rw-r--r-- | gradle/wrapper/gradle-wrapper.properties | 4 | ||||
-rw-r--r-- | src/main/java/com/github/technus/tectech/thing/tileEntity/MicroControllerTileEntity.java | 26 |
5 files changed, 40 insertions, 2 deletions
diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000000..58eebb4aa5 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "AVRcore"] + path = AVRcore + url = https://github.com/Technus/AVRcore diff --git a/AVRcore b/AVRcore new file mode 160000 +Subproject ec8467a08fff8b340a5ef698bdf6dc1915b3382 diff --git a/build.gradle b/build.gradle index ed05a63381..a203a9a6fa 100644 --- a/build.gradle +++ b/build.gradle @@ -26,6 +26,15 @@ allprojects { targetCompatibility = 1.8 } +sourceSets { + main { + java { + srcDir 'src/main/java' + srcDir 'AVRcore/src' + } + } +} + file "build.properties" withReader { def prop = new Properties() prop.load(it) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index e4af87c689..39c1bb6d1b 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Tue Dec 04 18:55:27 CET 2018 +#Sun Jul 21 17:13:31 CEST 2019 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 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(); + } +} |