update license header and added maven publishing

This commit is contained in:
Robin 2024-07-06 14:33:11 +02:00
parent 194f00f843
commit 1a6a3e5cbd
55 changed files with 776 additions and 220 deletions

View File

@ -1,6 +1,16 @@
/* /*
* EnvironmentTech Copyright (C) $YEAR Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) $YEAR Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */

View File

@ -75,6 +75,7 @@ base {
java.toolchain.languageVersion = JavaLanguageVersion.of(21) java.toolchain.languageVersion = JavaLanguageVersion.of(21)
spotless { spotless {
format("misc") { format("misc") {
target("*.gradle.kts", ".gitattributes", ".gitignore") target("*.gradle.kts", ".gitattributes", ".gitignore")
@ -273,21 +274,36 @@ tasks.withType<ProcessResources>().configureEach {
} }
java {
withSourcesJar()
withJavadocJar()
}
// Example configuration to allow publishing using the maven-publish plugin // Example configuration to allow publishing using the maven-publish plugin
publishing { publishing {
publications { publications {
register<MavenPublication>("mavenJava") { register<MavenPublication>("maven"){
pom {
licenses {
name = "GNU Lesser General Public License Version 3"
}
}
from(components["java"]) from(components["java"])
} }
} }
repositories { repositories {
maven { maven {
url = project.projectDir.toURI() val baseURL = "https://maven.robaertschi.xyz/"
url = uri("${baseURL}${if (version.toString().endsWith("SNAPSHOT")) "snapshots" else "releases"}")
} }
} }
} }
tasks.javadoc {
(options as StandardJavadocDocletOptions).addBooleanOption("html5", true)
}
// IDEA no longer automatically downloads sources/javadoc jars for dependencies, so we need to explicitly enable the behavior. // IDEA no longer automatically downloads sources/javadoc jars for dependencies, so we need to explicitly enable the behavior.
idea { idea {
module { module {

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.unittest; package robaertschi.environmenttech.unittest;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.unittest; package robaertschi.environmenttech.unittest;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech; package robaertschi.environmenttech;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech; package robaertschi.environmenttech;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech; package robaertschi.environmenttech;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.client; package robaertschi.environmenttech.client;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.client.particle; package robaertschi.environmenttech.client.particle;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.client.renderer; package robaertschi.environmenttech.client.renderer;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.client.screen; package robaertschi.environmenttech.client.screen;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.client.screen; package robaertschi.environmenttech.client.screen;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.command; package robaertschi.environmenttech.command;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.compat; package robaertschi.environmenttech.compat;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.compat.emi; package robaertschi.environmenttech.compat.emi;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.compat.emi; package robaertschi.environmenttech.compat.emi;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.compat.emi; package robaertschi.environmenttech.compat.emi;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.compat.jei; package robaertschi.environmenttech.compat.jei;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.compat.jei; package robaertschi.environmenttech.compat.jei;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.compat.top; package robaertschi.environmenttech.compat.top;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.compat.top; package robaertschi.environmenttech.compat.top;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.data.attachments; package robaertschi.environmenttech.data.attachments;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.data.capabilities; package robaertschi.environmenttech.data.capabilities;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.data.capabilities; package robaertschi.environmenttech.data.capabilities;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.data.capabilities; package robaertschi.environmenttech.data.capabilities;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.data.capabilities; package robaertschi.environmenttech.data.capabilities;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.data.capabilities; package robaertschi.environmenttech.data.capabilities;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.data.components; package robaertschi.environmenttech.data.components;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.data.components; package robaertschi.environmenttech.data.components;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.data.recipes; package robaertschi.environmenttech.data.recipes;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.data.recipes; package robaertschi.environmenttech.data.recipes;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.data.recipes; package robaertschi.environmenttech.data.recipes;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.datagen; package robaertschi.environmenttech.datagen;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.datagen; package robaertschi.environmenttech.datagen;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.datagen; package robaertschi.environmenttech.datagen;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.datagen; package robaertschi.environmenttech.datagen;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level; package robaertschi.environmenttech.level;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level.block; package robaertschi.environmenttech.level.block;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level.block; package robaertschi.environmenttech.level.block;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level.block; package robaertschi.environmenttech.level.block;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level.block; package robaertschi.environmenttech.level.block;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level.block.entity; package robaertschi.environmenttech.level.block.entity;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level.block.entity; package robaertschi.environmenttech.level.block.entity;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level.block.entity; package robaertschi.environmenttech.level.block.entity;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level.block.entity; package robaertschi.environmenttech.level.block.entity;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level.block.entity.renderer; package robaertschi.environmenttech.level.block.entity.renderer;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level.block.entity.renderer; package robaertschi.environmenttech.level.block.entity.renderer;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level.fluid; package robaertschi.environmenttech.level.fluid;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level.fluid; package robaertschi.environmenttech.level.fluid;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level.item; package robaertschi.environmenttech.level.item;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level.item; package robaertschi.environmenttech.level.item;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level.particle; package robaertschi.environmenttech.level.particle;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.level.particle; package robaertschi.environmenttech.level.particle;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.menu; package robaertschi.environmenttech.menu;

View File

@ -1,8 +1,18 @@
/* /*
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi * EnvironmentTech MC Mod
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code. Copyright (C) 2024 Robin Bärtschi and Contributors
* This is free software, and you are welcome to redistribute it
* under certain conditions; read the LICENSE file at the root of the source code for details. This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, by version 3 of the License.
This program 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
package robaertschi.environmenttech.menu; package robaertschi.environmenttech.menu;