SteamPowered/src/main/java/com/teammoeg/steampowered/block/SPBlockPartials.java

53 lines
2.7 KiB
Java
Raw Normal View History

2021-10-25 01:55:17 +02:00
/*
* Copyright (c) 2021 TeamMoeg
*
* This file is part of Steam Powered.
*
* Steam Powered is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* Steam Powered is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Steam Powered. If not, see <https://www.gnu.org/licenses/>.
*/
2021-09-01 15:57:53 +02:00
package com.teammoeg.steampowered.block;
2021-08-29 17:26:26 +02:00
import com.jozufozu.flywheel.core.PartialModel;
2021-12-03 17:34:27 +01:00
import net.minecraft.resources.ResourceLocation;
2021-08-29 17:26:26 +02:00
public class SPBlockPartials {
public static final PartialModel BRONZE_FLYWHEEL = get("bronze_flywheel/wheel");
public static final PartialModel BRONZE_FLYWHEEL_UPPER_ROTATING = get("bronze_flywheel/upper_rotating_connector");
public static final PartialModel BRONZE_FLYWHEEL_LOWER_ROTATING = get("bronze_flywheel/lower_rotating_connector");
public static final PartialModel BRONZE_FLYWHEEL_UPPER_SLIDING = get("bronze_flywheel/upper_sliding_connector");
public static final PartialModel BRONZE_FLYWHEEL_LOWER_SLIDING = get("bronze_flywheel/lower_sliding_connector");
public static final PartialModel CAST_IRON_FLYWHEEL = get("cast_iron_flywheel/wheel");
public static final PartialModel CAST_IRON_FLYWHEEL_UPPER_ROTATING = get("cast_iron_flywheel/upper_rotating_connector");
public static final PartialModel CAST_IRON_FLYWHEEL_LOWER_ROTATING = get("cast_iron_flywheel/lower_rotating_connector");
public static final PartialModel CAST_IRON_FLYWHEEL_UPPER_SLIDING = get("cast_iron_flywheel/upper_sliding_connector");
public static final PartialModel CAST_IRON_FLYWHEEL_LOWER_SLIDING = get("cast_iron_flywheel/lower_sliding_connector");
public static final PartialModel STEEL_FLYWHEEL = get("steel_flywheel/wheel");
public static final PartialModel STEEL_FLYWHEEL_UPPER_ROTATING = get("steel_flywheel/upper_rotating_connector");
public static final PartialModel STEEL_FLYWHEEL_LOWER_ROTATING = get("steel_flywheel/lower_rotating_connector");
public static final PartialModel STEEL_FLYWHEEL_UPPER_SLIDING = get("steel_flywheel/upper_sliding_connector");
public static final PartialModel STEEL_FLYWHEEL_LOWER_SLIDING = get("steel_flywheel/lower_sliding_connector");
2021-10-26 10:22:13 +02:00
public static final PartialModel DYNAMO_SHAFT = get("dynamo/shaft");
2021-08-29 17:26:26 +02:00
private static PartialModel get(String path) {
return new PartialModel(new ResourceLocation("steampowered", "block/" + path));
}
public static void clientInit() {
}
}