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
|
* 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/>.
|
||||||
*/
|
*/
|
@ -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"){
|
||||||
from (components["java"])
|
pom {
|
||||||
|
licenses {
|
||||||
|
name = "GNU Lesser General Public License Version 3"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
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 {
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user