Add sapper base logic code (MVP) along with rest of it

This commit is contained in:
Justin Vitale 2020-07-02 02:37:36 +10:00
parent b176230f77
commit 6dc00090d1
6 changed files with 219 additions and 0 deletions

View file

@ -342,6 +342,12 @@ public class TechRebornConfig {
@Config(config = "machines", category = "extractor", key = "ExtractorMaxEnergy", comment = "Extractor Max Energy (Value in EU)")
public static int extractorMaxEnergy = 1_000;
@Config(config = "machines", category = "extractor", key = "TapperInput", comment = "Tapper Max Input (Value in EU)")
public static int tapperMaxInput = 32;
@Config(config = "machines", category = "extractor", key = "TapperMaxEnergy", comment = "Tapper Max Energy (Value in EU)")
public static int tapperMaxEnergy = 1_000;
@Config(config = "machines", category = "compressor", key = "CompressorInput", comment = "Compressor Max Input (Value in EU)")
public static int compressorMaxInput = 32;