/* * This file is part of TechReborn, licensed under the MIT License (MIT). * * Copyright (c) 2018 TechReborn * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package techreborn.api; /** * This contains some static stuff used in recipes and other things */ public class Reference { public static String ALLOY_SMELTER_RECIPE = "ALLOY_SMELTER_RECIPE"; public static String ASSEMBLING_MACHINE_RECIPE = "ASSEMBLING_MACHINE_RECIPE"; public static String BLAST_FURNACE_RECIPE = "BLAST_FURNACE_RECIPE"; public static String CENTRIFUGE_RECIPE = "CENTRIFUGE_RECIPE"; public static String CHEMICAL_REACTOR_RECIPE = "CHEMICAL_REACTOR_RECIPE"; public static String COMPRESSOR_RECIPE = "COMPRESSOR_RECIPE"; public static String DISTILLATION_TOWER_RECIPE = "DISTILLATION_TOWER_RECIPE"; public static String EXTRACTOR_RECIPE = "EXTRACTOR_RECIPE"; public static String GRINDER_RECIPE = "GRINDER_RECIPE"; public static String IMPLOSION_COMPRESSOR_RECIPE = "IMPLOSION_COMPRESSOR_RECIPE"; public static String INDUSTRIAL_ELECTROLYZER_RECIPE = "INDUSTRIAL_ELECTROLYZER_RECIPE"; public static String INDUSTRIAL_GRINDER_RECIPE = "INDUSTRIAL_GRINDER_RECIPE"; public static String INDUSTRIAL_SAWMILL_RECIPE = "INDUSTRIAL_SAWMILL_RECIPE"; public static String RECYCLER_RECIPE = "RECYCLER_RECIPE"; public static String SCRAPBOX_RECIPE = "SCRAPBOX_RECIPE"; public static String VACUUM_FREEZER_RECIPE = "VACUUM_FREEZER_RECIPE"; public static String FLUID_REPLICATOR_RECIPE = "FLUID_REPLICATOR_RECIPE"; }