mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
21 lines
391 B
Java
21 lines
391 B
Java
package com.hbm.saveddata.satellites;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
public class SatelliteMiner extends Satellite {
|
|
|
|
public long lastOp;
|
|
|
|
public SatelliteMiner() {
|
|
this.satIface = Interfaces.NONE;
|
|
}
|
|
|
|
public void writeToNBT(NBTTagCompound nbt) {
|
|
nbt.setLong("lastOp", lastOp);
|
|
}
|
|
|
|
public void readFromNBT(NBTTagCompound nbt) {
|
|
lastOp = nbt.getLong("lastOp");
|
|
}
|
|
}
|