mirror of
https://github.com/RoBaertschi/EnvironmentTech.git
synced 2025-04-18 22:43:29 +00:00
update license header and added maven publishing
This commit is contained in:
parent
194f00f843
commit
1a6a3e5cbd
18
HEADER.java
18
HEADER.java
@ -1,6 +1,16 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) $YEAR Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) $YEAR Robin Bärtschi and Contributors
|
||||
|
||||
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/>.
|
||||
*/
|
@ -75,6 +75,7 @@ base {
|
||||
|
||||
java.toolchain.languageVersion = JavaLanguageVersion.of(21)
|
||||
|
||||
|
||||
spotless {
|
||||
format("misc") {
|
||||
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
|
||||
publishing {
|
||||
publications {
|
||||
register<MavenPublication>("mavenJava") {
|
||||
register<MavenPublication>("maven"){
|
||||
pom {
|
||||
licenses {
|
||||
name = "GNU Lesser General Public License Version 3"
|
||||
}
|
||||
}
|
||||
from(components["java"])
|
||||
}
|
||||
}
|
||||
repositories {
|
||||
|
||||
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 {
|
||||
module {
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
@ -1,8 +1,18 @@
|
||||
/*
|
||||
* EnvironmentTech Copyright (C) 2024 Robin Bärtschi
|
||||
* This program comes with ABSOLUTELY NO WARRANTY; for details open the file LICENSE at the root of the source code.
|
||||
* 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.
|
||||
* EnvironmentTech MC Mod
|
||||
Copyright (C) 2024 Robin Bärtschi and Contributors
|
||||
|
||||
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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user