From fd729f2f5fe139ee3254a9fa1cdd2435582fcf6a Mon Sep 17 00:00:00 2001 From: yuesha-yc Date: Sun, 24 Oct 2021 16:55:17 -0700 Subject: [PATCH] Update licenses --- HEADER.txt | 15 +++++++++ .../teammoeg/steampowered/BlockRegistry.java | 18 +++++++++++ .../teammoeg/steampowered/FluidRegistry.java | 18 +++++++++++ .../teammoeg/steampowered/ItemRegistry.java | 18 +++++++++++ .../com/teammoeg/steampowered/SPConfig.java | 18 +++++++++++ .../teammoeg/steampowered/SteamPowered.java | 18 +++++++++++ .../steampowered/block/SPBlockPartials.java | 18 +++++++++++ .../teammoeg/steampowered/block/SPShapes.java | 18 +++++++++++ .../steampowered/client/ClientUtils.java | 18 +++++++++++ .../client/SteamPoweredClient.java | 18 +++++++++++ .../instance/BronzeFlywheelInstance.java | 18 +++++++++++ .../instance/CastIronFlywheelInstance.java | 18 +++++++++++ .../instance/SteelFlywheelInstance.java | 18 +++++++++++ .../client/render/AlternatorRenderer.java | 31 +++++++++++++++++++ .../client/render/BronzeFlywheelRenderer.java | 18 +++++++++++ .../render/CastIronFlywheelRenderer.java | 18 +++++++++++ .../client/render/SteelFlywheelRenderer.java | 18 +++++++++++ .../content/boiler/BoilerBlock.java | 18 +++++++++++ .../content/boiler/BoilerTileEntity.java | 18 +++++++++++ .../content/boiler/BronzeBoilerBlock.java | 18 +++++++++++ .../boiler/BronzeBoilerTileEntity.java | 18 +++++++++++ .../content/boiler/CastIronBoilerBlock.java | 18 +++++++++++ .../boiler/CastIronBoilerTileEntity.java | 18 +++++++++++ .../content/boiler/SteelBoilerBlock.java | 18 +++++++++++ .../content/boiler/SteelBoilerTileEntity.java | 18 +++++++++++ .../content/burner/BronzeBurnerBlock.java | 18 +++++++++++ .../burner/BronzeBurnerTileEntity.java | 18 +++++++++++ .../content/burner/BurnerBlock.java | 18 +++++++++++ .../content/burner/BurnerTileEntity.java | 18 +++++++++++ .../content/burner/CastIronBurnerBlock.java | 18 +++++++++++ .../burner/CastIronBurnerTileEntity.java | 18 +++++++++++ .../content/burner/IHeatReceiver.java | 18 +++++++++++ .../content/burner/SteelBurnerBlock.java | 18 +++++++++++ .../content/burner/SteelBurnerTileEntity.java | 18 +++++++++++ .../content/cogwheel/MetalCogwheelBlock.java | 18 +++++++++++ .../cogwheel/MetalCogwheelTileEntity.java | 18 +++++++++++ .../engine/BronzeSteamEngineBlock.java | 18 +++++++++++ .../engine/BronzeSteamEngineTileEntity.java | 18 +++++++++++ .../engine/CastIronSteamEngineBlock.java | 18 +++++++++++ .../engine/CastIronSteamEngineTileEntity.java | 18 +++++++++++ .../content/engine/SteamEngineBlock.java | 18 +++++++++++ .../content/engine/SteamEngineTileEntity.java | 18 +++++++++++ .../content/engine/SteelSteamEngineBlock.java | 18 +++++++++++ .../engine/SteelSteamEngineTileEntity.java | 18 +++++++++++ .../flywheel/BronzeSteamFlywheelBlock.java | 18 +++++++++++ .../flywheel/CastIronSteamFlywheelBlock.java | 18 +++++++++++ .../flywheel/SteelSteamFlywheelBlock.java | 18 +++++++++++ .../steampowered/item/GasContainerItem.java | 18 +++++++++++ .../mixin/FlywheelTileEntityAccess.java | 18 +++++++++++ .../mixin/HandCrankBlockMixin.java | 18 +++++++++++ .../mixin/client/MixinClientEvents.java | 18 +++++++++++ .../server/MixinAbstractContraption.java | 18 +++++++++++ .../server/MixinCartAssemblerTileEntity.java | 18 +++++++++++ .../steampowered/network/ITileSync.java | 18 +++++++++++ .../steampowered/network/PacketHandler.java | 18 +++++++++++ .../steampowered/network/TileSyncPacket.java | 18 +++++++++++ .../steampowered/ponder/SPPonderIndex.java | 18 +++++++++++ .../steampowered/ponder/SPScenes.java | 18 +++++++++++ .../steampowered/registrate/SPBlocks.java | 18 +++++++++++ .../steampowered/registrate/SPItems.java | 18 +++++++++++ .../steampowered/registrate/SPTiles.java | 18 +++++++++++ 61 files changed, 1108 insertions(+) create mode 100644 HEADER.txt diff --git a/HEADER.txt b/HEADER.txt new file mode 100644 index 0000000..a190efd --- /dev/null +++ b/HEADER.txt @@ -0,0 +1,15 @@ +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 . diff --git a/src/main/java/com/teammoeg/steampowered/BlockRegistry.java b/src/main/java/com/teammoeg/steampowered/BlockRegistry.java index 909e4c9..3cef270 100644 --- a/src/main/java/com/teammoeg/steampowered/BlockRegistry.java +++ b/src/main/java/com/teammoeg/steampowered/BlockRegistry.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered; import net.minecraft.block.Block; diff --git a/src/main/java/com/teammoeg/steampowered/FluidRegistry.java b/src/main/java/com/teammoeg/steampowered/FluidRegistry.java index 3c18035..57dffb5 100644 --- a/src/main/java/com/teammoeg/steampowered/FluidRegistry.java +++ b/src/main/java/com/teammoeg/steampowered/FluidRegistry.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered; import net.minecraft.fluid.FlowingFluid; diff --git a/src/main/java/com/teammoeg/steampowered/ItemRegistry.java b/src/main/java/com/teammoeg/steampowered/ItemRegistry.java index cc9bc27..79f5392 100644 --- a/src/main/java/com/teammoeg/steampowered/ItemRegistry.java +++ b/src/main/java/com/teammoeg/steampowered/ItemRegistry.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered; import com.teammoeg.steampowered.item.GasContainerItem; diff --git a/src/main/java/com/teammoeg/steampowered/SPConfig.java b/src/main/java/com/teammoeg/steampowered/SPConfig.java index b6e0092..acb58a5 100644 --- a/src/main/java/com/teammoeg/steampowered/SPConfig.java +++ b/src/main/java/com/teammoeg/steampowered/SPConfig.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered; import net.minecraftforge.common.ForgeConfigSpec; diff --git a/src/main/java/com/teammoeg/steampowered/SteamPowered.java b/src/main/java/com/teammoeg/steampowered/SteamPowered.java index ade3bcd..e4c0ce4 100644 --- a/src/main/java/com/teammoeg/steampowered/SteamPowered.java +++ b/src/main/java/com/teammoeg/steampowered/SteamPowered.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered; import com.simibubi.create.foundation.data.CreateRegistrate; diff --git a/src/main/java/com/teammoeg/steampowered/block/SPBlockPartials.java b/src/main/java/com/teammoeg/steampowered/block/SPBlockPartials.java index c8de662..81f2b28 100644 --- a/src/main/java/com/teammoeg/steampowered/block/SPBlockPartials.java +++ b/src/main/java/com/teammoeg/steampowered/block/SPBlockPartials.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.block; import com.jozufozu.flywheel.core.PartialModel; diff --git a/src/main/java/com/teammoeg/steampowered/block/SPShapes.java b/src/main/java/com/teammoeg/steampowered/block/SPShapes.java index 520c2d2..d99a4e9 100644 --- a/src/main/java/com/teammoeg/steampowered/block/SPShapes.java +++ b/src/main/java/com/teammoeg/steampowered/block/SPShapes.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.block; import com.simibubi.create.foundation.utility.VoxelShaper; diff --git a/src/main/java/com/teammoeg/steampowered/client/ClientUtils.java b/src/main/java/com/teammoeg/steampowered/client/ClientUtils.java index ae85a05..a57e9a1 100644 --- a/src/main/java/com/teammoeg/steampowered/client/ClientUtils.java +++ b/src/main/java/com/teammoeg/steampowered/client/ClientUtils.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.client; import net.minecraft.client.Minecraft; diff --git a/src/main/java/com/teammoeg/steampowered/client/SteamPoweredClient.java b/src/main/java/com/teammoeg/steampowered/client/SteamPoweredClient.java index f2e0f05..56b2183 100644 --- a/src/main/java/com/teammoeg/steampowered/client/SteamPoweredClient.java +++ b/src/main/java/com/teammoeg/steampowered/client/SteamPoweredClient.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.client; import com.teammoeg.steampowered.FluidRegistry; diff --git a/src/main/java/com/teammoeg/steampowered/client/instance/BronzeFlywheelInstance.java b/src/main/java/com/teammoeg/steampowered/client/instance/BronzeFlywheelInstance.java index 8da437c..824d5d2 100644 --- a/src/main/java/com/teammoeg/steampowered/client/instance/BronzeFlywheelInstance.java +++ b/src/main/java/com/teammoeg/steampowered/client/instance/BronzeFlywheelInstance.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.client.instance; import com.google.common.collect.Lists; diff --git a/src/main/java/com/teammoeg/steampowered/client/instance/CastIronFlywheelInstance.java b/src/main/java/com/teammoeg/steampowered/client/instance/CastIronFlywheelInstance.java index b35b35a..13b570f 100644 --- a/src/main/java/com/teammoeg/steampowered/client/instance/CastIronFlywheelInstance.java +++ b/src/main/java/com/teammoeg/steampowered/client/instance/CastIronFlywheelInstance.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.client.instance; import com.google.common.collect.Lists; diff --git a/src/main/java/com/teammoeg/steampowered/client/instance/SteelFlywheelInstance.java b/src/main/java/com/teammoeg/steampowered/client/instance/SteelFlywheelInstance.java index b477340..20aca66 100644 --- a/src/main/java/com/teammoeg/steampowered/client/instance/SteelFlywheelInstance.java +++ b/src/main/java/com/teammoeg/steampowered/client/instance/SteelFlywheelInstance.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.client.instance; import com.google.common.collect.Lists; diff --git a/src/main/java/com/teammoeg/steampowered/client/render/AlternatorRenderer.java b/src/main/java/com/teammoeg/steampowered/client/render/AlternatorRenderer.java index 83c24c1..ffdd257 100644 --- a/src/main/java/com/teammoeg/steampowered/client/render/AlternatorRenderer.java +++ b/src/main/java/com/teammoeg/steampowered/client/render/AlternatorRenderer.java @@ -1,3 +1,30 @@ +/** + * Available under MIT the license more info at: https://tldrlegal.com/license/mit-license + * + * MIT License + * + * Copyright 2021 MRH0 + * + * 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 t + * he 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 com.teammoeg.steampowered.client.render; import com.simibubi.create.AllBlockPartials; @@ -7,6 +34,10 @@ import com.simibubi.create.foundation.render.PartialBufferer; import com.simibubi.create.foundation.render.SuperByteBuffer; import net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher; +/** + * Adapted from: Create: Crafts & Additions + * @author MRH0 + */ public class AlternatorRenderer extends KineticTileEntityRenderer { public AlternatorRenderer(TileEntityRendererDispatcher dispatcher) { diff --git a/src/main/java/com/teammoeg/steampowered/client/render/BronzeFlywheelRenderer.java b/src/main/java/com/teammoeg/steampowered/client/render/BronzeFlywheelRenderer.java index 99a1505..d3db585 100644 --- a/src/main/java/com/teammoeg/steampowered/client/render/BronzeFlywheelRenderer.java +++ b/src/main/java/com/teammoeg/steampowered/client/render/BronzeFlywheelRenderer.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.client.render; import com.jozufozu.flywheel.backend.Backend; diff --git a/src/main/java/com/teammoeg/steampowered/client/render/CastIronFlywheelRenderer.java b/src/main/java/com/teammoeg/steampowered/client/render/CastIronFlywheelRenderer.java index 8675498..da3dfc0 100644 --- a/src/main/java/com/teammoeg/steampowered/client/render/CastIronFlywheelRenderer.java +++ b/src/main/java/com/teammoeg/steampowered/client/render/CastIronFlywheelRenderer.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.client.render; import com.jozufozu.flywheel.backend.Backend; diff --git a/src/main/java/com/teammoeg/steampowered/client/render/SteelFlywheelRenderer.java b/src/main/java/com/teammoeg/steampowered/client/render/SteelFlywheelRenderer.java index c94589f..3f3f620 100644 --- a/src/main/java/com/teammoeg/steampowered/client/render/SteelFlywheelRenderer.java +++ b/src/main/java/com/teammoeg/steampowered/client/render/SteelFlywheelRenderer.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.client.render; import com.jozufozu.flywheel.backend.Backend; diff --git a/src/main/java/com/teammoeg/steampowered/content/boiler/BoilerBlock.java b/src/main/java/com/teammoeg/steampowered/content/boiler/BoilerBlock.java index 8e9f8bb..c361fb6 100644 --- a/src/main/java/com/teammoeg/steampowered/content/boiler/BoilerBlock.java +++ b/src/main/java/com/teammoeg/steampowered/content/boiler/BoilerBlock.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.boiler; import java.util.List; diff --git a/src/main/java/com/teammoeg/steampowered/content/boiler/BoilerTileEntity.java b/src/main/java/com/teammoeg/steampowered/content/boiler/BoilerTileEntity.java index ec9e5f7..c65a156 100644 --- a/src/main/java/com/teammoeg/steampowered/content/boiler/BoilerTileEntity.java +++ b/src/main/java/com/teammoeg/steampowered/content/boiler/BoilerTileEntity.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.boiler; import com.simibubi.create.content.contraptions.goggles.IHaveGoggleInformation; diff --git a/src/main/java/com/teammoeg/steampowered/content/boiler/BronzeBoilerBlock.java b/src/main/java/com/teammoeg/steampowered/content/boiler/BronzeBoilerBlock.java index ef444bf..d11864d 100644 --- a/src/main/java/com/teammoeg/steampowered/content/boiler/BronzeBoilerBlock.java +++ b/src/main/java/com/teammoeg/steampowered/content/boiler/BronzeBoilerBlock.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.boiler; import com.teammoeg.steampowered.registrate.SPTiles; diff --git a/src/main/java/com/teammoeg/steampowered/content/boiler/BronzeBoilerTileEntity.java b/src/main/java/com/teammoeg/steampowered/content/boiler/BronzeBoilerTileEntity.java index 0cacba2..7087799 100644 --- a/src/main/java/com/teammoeg/steampowered/content/boiler/BronzeBoilerTileEntity.java +++ b/src/main/java/com/teammoeg/steampowered/content/boiler/BronzeBoilerTileEntity.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.boiler; import net.minecraft.tileentity.TileEntityType; diff --git a/src/main/java/com/teammoeg/steampowered/content/boiler/CastIronBoilerBlock.java b/src/main/java/com/teammoeg/steampowered/content/boiler/CastIronBoilerBlock.java index 0df382a..48804dc 100644 --- a/src/main/java/com/teammoeg/steampowered/content/boiler/CastIronBoilerBlock.java +++ b/src/main/java/com/teammoeg/steampowered/content/boiler/CastIronBoilerBlock.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.boiler; import com.teammoeg.steampowered.registrate.SPTiles; diff --git a/src/main/java/com/teammoeg/steampowered/content/boiler/CastIronBoilerTileEntity.java b/src/main/java/com/teammoeg/steampowered/content/boiler/CastIronBoilerTileEntity.java index fcc4252..e90f50b 100644 --- a/src/main/java/com/teammoeg/steampowered/content/boiler/CastIronBoilerTileEntity.java +++ b/src/main/java/com/teammoeg/steampowered/content/boiler/CastIronBoilerTileEntity.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.boiler; import net.minecraft.tileentity.TileEntityType; diff --git a/src/main/java/com/teammoeg/steampowered/content/boiler/SteelBoilerBlock.java b/src/main/java/com/teammoeg/steampowered/content/boiler/SteelBoilerBlock.java index 44e5bd8..ffe7dbe 100644 --- a/src/main/java/com/teammoeg/steampowered/content/boiler/SteelBoilerBlock.java +++ b/src/main/java/com/teammoeg/steampowered/content/boiler/SteelBoilerBlock.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.boiler; import com.teammoeg.steampowered.registrate.SPTiles; diff --git a/src/main/java/com/teammoeg/steampowered/content/boiler/SteelBoilerTileEntity.java b/src/main/java/com/teammoeg/steampowered/content/boiler/SteelBoilerTileEntity.java index 3f6d4c8..75d10ae 100644 --- a/src/main/java/com/teammoeg/steampowered/content/boiler/SteelBoilerTileEntity.java +++ b/src/main/java/com/teammoeg/steampowered/content/boiler/SteelBoilerTileEntity.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.boiler; import net.minecraft.tileentity.TileEntityType; diff --git a/src/main/java/com/teammoeg/steampowered/content/burner/BronzeBurnerBlock.java b/src/main/java/com/teammoeg/steampowered/content/burner/BronzeBurnerBlock.java index fe82b93..70ba761 100644 --- a/src/main/java/com/teammoeg/steampowered/content/burner/BronzeBurnerBlock.java +++ b/src/main/java/com/teammoeg/steampowered/content/burner/BronzeBurnerBlock.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.burner; import com.teammoeg.steampowered.registrate.SPTiles; diff --git a/src/main/java/com/teammoeg/steampowered/content/burner/BronzeBurnerTileEntity.java b/src/main/java/com/teammoeg/steampowered/content/burner/BronzeBurnerTileEntity.java index ee3daad..b5bce75 100644 --- a/src/main/java/com/teammoeg/steampowered/content/burner/BronzeBurnerTileEntity.java +++ b/src/main/java/com/teammoeg/steampowered/content/burner/BronzeBurnerTileEntity.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.burner; import net.minecraft.tileentity.TileEntityType; diff --git a/src/main/java/com/teammoeg/steampowered/content/burner/BurnerBlock.java b/src/main/java/com/teammoeg/steampowered/content/burner/BurnerBlock.java index 17aec8f..2d48a7a 100644 --- a/src/main/java/com/teammoeg/steampowered/content/burner/BurnerBlock.java +++ b/src/main/java/com/teammoeg/steampowered/content/burner/BurnerBlock.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.burner; import java.util.List; diff --git a/src/main/java/com/teammoeg/steampowered/content/burner/BurnerTileEntity.java b/src/main/java/com/teammoeg/steampowered/content/burner/BurnerTileEntity.java index 6b450f3..77fb99a 100644 --- a/src/main/java/com/teammoeg/steampowered/content/burner/BurnerTileEntity.java +++ b/src/main/java/com/teammoeg/steampowered/content/burner/BurnerTileEntity.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.burner; import com.simibubi.create.content.contraptions.goggles.IHaveGoggleInformation; diff --git a/src/main/java/com/teammoeg/steampowered/content/burner/CastIronBurnerBlock.java b/src/main/java/com/teammoeg/steampowered/content/burner/CastIronBurnerBlock.java index 14b2a76..5c0a619 100644 --- a/src/main/java/com/teammoeg/steampowered/content/burner/CastIronBurnerBlock.java +++ b/src/main/java/com/teammoeg/steampowered/content/burner/CastIronBurnerBlock.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.burner; import com.teammoeg.steampowered.registrate.SPTiles; diff --git a/src/main/java/com/teammoeg/steampowered/content/burner/CastIronBurnerTileEntity.java b/src/main/java/com/teammoeg/steampowered/content/burner/CastIronBurnerTileEntity.java index 9e45f62..e77ff8c 100644 --- a/src/main/java/com/teammoeg/steampowered/content/burner/CastIronBurnerTileEntity.java +++ b/src/main/java/com/teammoeg/steampowered/content/burner/CastIronBurnerTileEntity.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.burner; import net.minecraft.tileentity.TileEntityType; diff --git a/src/main/java/com/teammoeg/steampowered/content/burner/IHeatReceiver.java b/src/main/java/com/teammoeg/steampowered/content/burner/IHeatReceiver.java index 042c817..d00e001 100644 --- a/src/main/java/com/teammoeg/steampowered/content/burner/IHeatReceiver.java +++ b/src/main/java/com/teammoeg/steampowered/content/burner/IHeatReceiver.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.burner; public interface IHeatReceiver { diff --git a/src/main/java/com/teammoeg/steampowered/content/burner/SteelBurnerBlock.java b/src/main/java/com/teammoeg/steampowered/content/burner/SteelBurnerBlock.java index 287d25e..543e48f 100644 --- a/src/main/java/com/teammoeg/steampowered/content/burner/SteelBurnerBlock.java +++ b/src/main/java/com/teammoeg/steampowered/content/burner/SteelBurnerBlock.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.burner; import com.teammoeg.steampowered.registrate.SPTiles; diff --git a/src/main/java/com/teammoeg/steampowered/content/burner/SteelBurnerTileEntity.java b/src/main/java/com/teammoeg/steampowered/content/burner/SteelBurnerTileEntity.java index 5551b7b..8641439 100644 --- a/src/main/java/com/teammoeg/steampowered/content/burner/SteelBurnerTileEntity.java +++ b/src/main/java/com/teammoeg/steampowered/content/burner/SteelBurnerTileEntity.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.burner; import net.minecraft.tileentity.TileEntityType; diff --git a/src/main/java/com/teammoeg/steampowered/content/cogwheel/MetalCogwheelBlock.java b/src/main/java/com/teammoeg/steampowered/content/cogwheel/MetalCogwheelBlock.java index 2d930a6..41f4e11 100644 --- a/src/main/java/com/teammoeg/steampowered/content/cogwheel/MetalCogwheelBlock.java +++ b/src/main/java/com/teammoeg/steampowered/content/cogwheel/MetalCogwheelBlock.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.cogwheel; import com.simibubi.create.content.contraptions.relays.elementary.CogWheelBlock; diff --git a/src/main/java/com/teammoeg/steampowered/content/cogwheel/MetalCogwheelTileEntity.java b/src/main/java/com/teammoeg/steampowered/content/cogwheel/MetalCogwheelTileEntity.java index e41b7ae..b6d8506 100644 --- a/src/main/java/com/teammoeg/steampowered/content/cogwheel/MetalCogwheelTileEntity.java +++ b/src/main/java/com/teammoeg/steampowered/content/cogwheel/MetalCogwheelTileEntity.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.cogwheel; import com.simibubi.create.content.contraptions.relays.elementary.SimpleKineticTileEntity; diff --git a/src/main/java/com/teammoeg/steampowered/content/engine/BronzeSteamEngineBlock.java b/src/main/java/com/teammoeg/steampowered/content/engine/BronzeSteamEngineBlock.java index 31c27e2..1c17cf7 100644 --- a/src/main/java/com/teammoeg/steampowered/content/engine/BronzeSteamEngineBlock.java +++ b/src/main/java/com/teammoeg/steampowered/content/engine/BronzeSteamEngineBlock.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.engine; import com.simibubi.create.foundation.block.ITE; diff --git a/src/main/java/com/teammoeg/steampowered/content/engine/BronzeSteamEngineTileEntity.java b/src/main/java/com/teammoeg/steampowered/content/engine/BronzeSteamEngineTileEntity.java index d8b9868..7befcdf 100644 --- a/src/main/java/com/teammoeg/steampowered/content/engine/BronzeSteamEngineTileEntity.java +++ b/src/main/java/com/teammoeg/steampowered/content/engine/BronzeSteamEngineTileEntity.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.engine; import com.teammoeg.steampowered.SPConfig; diff --git a/src/main/java/com/teammoeg/steampowered/content/engine/CastIronSteamEngineBlock.java b/src/main/java/com/teammoeg/steampowered/content/engine/CastIronSteamEngineBlock.java index 2e82641..dcc7d07 100644 --- a/src/main/java/com/teammoeg/steampowered/content/engine/CastIronSteamEngineBlock.java +++ b/src/main/java/com/teammoeg/steampowered/content/engine/CastIronSteamEngineBlock.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.engine; import com.simibubi.create.foundation.block.ITE; diff --git a/src/main/java/com/teammoeg/steampowered/content/engine/CastIronSteamEngineTileEntity.java b/src/main/java/com/teammoeg/steampowered/content/engine/CastIronSteamEngineTileEntity.java index 2148d21..8dc4afd 100644 --- a/src/main/java/com/teammoeg/steampowered/content/engine/CastIronSteamEngineTileEntity.java +++ b/src/main/java/com/teammoeg/steampowered/content/engine/CastIronSteamEngineTileEntity.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.engine; import com.teammoeg.steampowered.SPConfig; diff --git a/src/main/java/com/teammoeg/steampowered/content/engine/SteamEngineBlock.java b/src/main/java/com/teammoeg/steampowered/content/engine/SteamEngineBlock.java index f7f2b02..a38599b 100644 --- a/src/main/java/com/teammoeg/steampowered/content/engine/SteamEngineBlock.java +++ b/src/main/java/com/teammoeg/steampowered/content/engine/SteamEngineBlock.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.engine; import com.jozufozu.flywheel.core.PartialModel; diff --git a/src/main/java/com/teammoeg/steampowered/content/engine/SteamEngineTileEntity.java b/src/main/java/com/teammoeg/steampowered/content/engine/SteamEngineTileEntity.java index 7f88fc5..2d0ce4d 100644 --- a/src/main/java/com/teammoeg/steampowered/content/engine/SteamEngineTileEntity.java +++ b/src/main/java/com/teammoeg/steampowered/content/engine/SteamEngineTileEntity.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.engine; import com.simibubi.create.content.contraptions.components.flywheel.FlywheelBlock; diff --git a/src/main/java/com/teammoeg/steampowered/content/engine/SteelSteamEngineBlock.java b/src/main/java/com/teammoeg/steampowered/content/engine/SteelSteamEngineBlock.java index d323361..8504d45 100644 --- a/src/main/java/com/teammoeg/steampowered/content/engine/SteelSteamEngineBlock.java +++ b/src/main/java/com/teammoeg/steampowered/content/engine/SteelSteamEngineBlock.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.engine; import com.simibubi.create.foundation.block.ITE; diff --git a/src/main/java/com/teammoeg/steampowered/content/engine/SteelSteamEngineTileEntity.java b/src/main/java/com/teammoeg/steampowered/content/engine/SteelSteamEngineTileEntity.java index f179bd6..1434409 100644 --- a/src/main/java/com/teammoeg/steampowered/content/engine/SteelSteamEngineTileEntity.java +++ b/src/main/java/com/teammoeg/steampowered/content/engine/SteelSteamEngineTileEntity.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.engine; import com.teammoeg.steampowered.SPConfig; diff --git a/src/main/java/com/teammoeg/steampowered/content/flywheel/BronzeSteamFlywheelBlock.java b/src/main/java/com/teammoeg/steampowered/content/flywheel/BronzeSteamFlywheelBlock.java index 1f45bd7..17c4619 100644 --- a/src/main/java/com/teammoeg/steampowered/content/flywheel/BronzeSteamFlywheelBlock.java +++ b/src/main/java/com/teammoeg/steampowered/content/flywheel/BronzeSteamFlywheelBlock.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.flywheel; import com.simibubi.create.content.contraptions.components.flywheel.FlywheelBlock; diff --git a/src/main/java/com/teammoeg/steampowered/content/flywheel/CastIronSteamFlywheelBlock.java b/src/main/java/com/teammoeg/steampowered/content/flywheel/CastIronSteamFlywheelBlock.java index 3e26083..a37febc 100644 --- a/src/main/java/com/teammoeg/steampowered/content/flywheel/CastIronSteamFlywheelBlock.java +++ b/src/main/java/com/teammoeg/steampowered/content/flywheel/CastIronSteamFlywheelBlock.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.flywheel; import com.simibubi.create.content.contraptions.components.flywheel.FlywheelBlock; diff --git a/src/main/java/com/teammoeg/steampowered/content/flywheel/SteelSteamFlywheelBlock.java b/src/main/java/com/teammoeg/steampowered/content/flywheel/SteelSteamFlywheelBlock.java index fe2b8c3..4a29d21 100644 --- a/src/main/java/com/teammoeg/steampowered/content/flywheel/SteelSteamFlywheelBlock.java +++ b/src/main/java/com/teammoeg/steampowered/content/flywheel/SteelSteamFlywheelBlock.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.content.flywheel; import com.simibubi.create.content.contraptions.components.flywheel.FlywheelBlock; diff --git a/src/main/java/com/teammoeg/steampowered/item/GasContainerItem.java b/src/main/java/com/teammoeg/steampowered/item/GasContainerItem.java index 3993f03..6582f2c 100644 --- a/src/main/java/com/teammoeg/steampowered/item/GasContainerItem.java +++ b/src/main/java/com/teammoeg/steampowered/item/GasContainerItem.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.item; import com.teammoeg.steampowered.FluidRegistry; diff --git a/src/main/java/com/teammoeg/steampowered/mixin/FlywheelTileEntityAccess.java b/src/main/java/com/teammoeg/steampowered/mixin/FlywheelTileEntityAccess.java index decd01d..f08cb24 100644 --- a/src/main/java/com/teammoeg/steampowered/mixin/FlywheelTileEntityAccess.java +++ b/src/main/java/com/teammoeg/steampowered/mixin/FlywheelTileEntityAccess.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.mixin; import com.simibubi.create.content.contraptions.components.flywheel.FlywheelTileEntity; diff --git a/src/main/java/com/teammoeg/steampowered/mixin/HandCrankBlockMixin.java b/src/main/java/com/teammoeg/steampowered/mixin/HandCrankBlockMixin.java index fbc2979..c473b61 100644 --- a/src/main/java/com/teammoeg/steampowered/mixin/HandCrankBlockMixin.java +++ b/src/main/java/com/teammoeg/steampowered/mixin/HandCrankBlockMixin.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.mixin; import com.simibubi.create.content.contraptions.components.crank.HandCrankBlock; diff --git a/src/main/java/com/teammoeg/steampowered/mixin/client/MixinClientEvents.java b/src/main/java/com/teammoeg/steampowered/mixin/client/MixinClientEvents.java index 8e01837..9e7d943 100644 --- a/src/main/java/com/teammoeg/steampowered/mixin/client/MixinClientEvents.java +++ b/src/main/java/com/teammoeg/steampowered/mixin/client/MixinClientEvents.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.mixin.client; import com.mojang.blaze3d.matrix.MatrixStack; diff --git a/src/main/java/com/teammoeg/steampowered/mixin/server/MixinAbstractContraption.java b/src/main/java/com/teammoeg/steampowered/mixin/server/MixinAbstractContraption.java index 02b590c..b4cd2d4 100644 --- a/src/main/java/com/teammoeg/steampowered/mixin/server/MixinAbstractContraption.java +++ b/src/main/java/com/teammoeg/steampowered/mixin/server/MixinAbstractContraption.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.mixin.server; import com.simibubi.create.content.contraptions.components.structureMovement.AbstractContraptionEntity; diff --git a/src/main/java/com/teammoeg/steampowered/mixin/server/MixinCartAssemblerTileEntity.java b/src/main/java/com/teammoeg/steampowered/mixin/server/MixinCartAssemblerTileEntity.java index 273ae15..5460b0f 100644 --- a/src/main/java/com/teammoeg/steampowered/mixin/server/MixinCartAssemblerTileEntity.java +++ b/src/main/java/com/teammoeg/steampowered/mixin/server/MixinCartAssemblerTileEntity.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.mixin.server; import com.simibubi.create.content.contraptions.components.structureMovement.mounted.CartAssemblerTileEntity; diff --git a/src/main/java/com/teammoeg/steampowered/network/ITileSync.java b/src/main/java/com/teammoeg/steampowered/network/ITileSync.java index 6348105..743a383 100644 --- a/src/main/java/com/teammoeg/steampowered/network/ITileSync.java +++ b/src/main/java/com/teammoeg/steampowered/network/ITileSync.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.network; import net.minecraft.nbt.CompoundNBT; diff --git a/src/main/java/com/teammoeg/steampowered/network/PacketHandler.java b/src/main/java/com/teammoeg/steampowered/network/PacketHandler.java index 584a086..5c862a0 100644 --- a/src/main/java/com/teammoeg/steampowered/network/PacketHandler.java +++ b/src/main/java/com/teammoeg/steampowered/network/PacketHandler.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.network; import com.teammoeg.steampowered.SteamPowered; diff --git a/src/main/java/com/teammoeg/steampowered/network/TileSyncPacket.java b/src/main/java/com/teammoeg/steampowered/network/TileSyncPacket.java index 1450caa..c9571fc 100644 --- a/src/main/java/com/teammoeg/steampowered/network/TileSyncPacket.java +++ b/src/main/java/com/teammoeg/steampowered/network/TileSyncPacket.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.network; import com.teammoeg.steampowered.client.ClientUtils; diff --git a/src/main/java/com/teammoeg/steampowered/ponder/SPPonderIndex.java b/src/main/java/com/teammoeg/steampowered/ponder/SPPonderIndex.java index 130368f..e19abdf 100644 --- a/src/main/java/com/teammoeg/steampowered/ponder/SPPonderIndex.java +++ b/src/main/java/com/teammoeg/steampowered/ponder/SPPonderIndex.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.ponder; import com.simibubi.create.Create; diff --git a/src/main/java/com/teammoeg/steampowered/ponder/SPScenes.java b/src/main/java/com/teammoeg/steampowered/ponder/SPScenes.java index 7a73c58..3e7634f 100644 --- a/src/main/java/com/teammoeg/steampowered/ponder/SPScenes.java +++ b/src/main/java/com/teammoeg/steampowered/ponder/SPScenes.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.ponder; import com.simibubi.create.content.contraptions.processing.burner.BlazeBurnerBlock; diff --git a/src/main/java/com/teammoeg/steampowered/registrate/SPBlocks.java b/src/main/java/com/teammoeg/steampowered/registrate/SPBlocks.java index 4314bd0..8d5824c 100644 --- a/src/main/java/com/teammoeg/steampowered/registrate/SPBlocks.java +++ b/src/main/java/com/teammoeg/steampowered/registrate/SPBlocks.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.registrate; import com.simibubi.create.AllTags; diff --git a/src/main/java/com/teammoeg/steampowered/registrate/SPItems.java b/src/main/java/com/teammoeg/steampowered/registrate/SPItems.java index 1fd9c11..0925f1f 100644 --- a/src/main/java/com/teammoeg/steampowered/registrate/SPItems.java +++ b/src/main/java/com/teammoeg/steampowered/registrate/SPItems.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.registrate; import com.simibubi.create.foundation.data.CreateRegistrate; diff --git a/src/main/java/com/teammoeg/steampowered/registrate/SPTiles.java b/src/main/java/com/teammoeg/steampowered/registrate/SPTiles.java index 0355046..5943e54 100644 --- a/src/main/java/com/teammoeg/steampowered/registrate/SPTiles.java +++ b/src/main/java/com/teammoeg/steampowered/registrate/SPTiles.java @@ -1,3 +1,21 @@ +/* + * 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 . + */ + package com.teammoeg.steampowered.registrate; import com.simibubi.create.content.contraptions.base.HalfShaftInstance;