Merge branch 'developement' into render

# Conflicts:
#	src/main/java/de/bixilon/minosoft/data/mappings/blocks/Blocks.java
#	src/main/java/de/bixilon/minosoft/gui/main/Launcher.java
#	src/main/java/de/bixilon/minosoft/gui/main/StartProgressWindow.java
#	src/main/java/de/bixilon/minosoft/protocol/network/Connection.java
This commit is contained in:
Bixilon 2020-10-29 16:20:43 +01:00
commit 5cc00d1e6f
No known key found for this signature in database
GPG Key ID: 5CAD791931B09AC4
678 changed files with 858 additions and 755 deletions

View File

@ -3,7 +3,7 @@ charset = utf-8
end_of_line = lf end_of_line = lf
indent_size = 4 indent_size = 4
indent_style = space indent_style = space
insert_final_newline = false insert_final_newline = true
max_line_length = 0 max_line_length = 0
tab_width = 4 tab_width = 4
ij_continuation_indent_size = 8 ij_continuation_indent_size = 8
@ -373,4 +373,4 @@ ij_xml_space_after_tag_name = false
ij_xml_space_around_equals_in_attribute = false ij_xml_space_around_equals_in_attribute = false
ij_xml_space_inside_empty_tag = true ij_xml_space_inside_empty_tag = true
ij_xml_text_wrap = normal ij_xml_text_wrap = normal
ij_xml_use_custom_settings = false ij_xml_use_custom_settings = false

View File

@ -1,6 +1,6 @@
<component name="CopyrightManager"> <component name="CopyrightManager">
<copyright> <copyright>
<option name="notice" value="Codename Minosoft&#10;Copyright (C) &amp;#36;today.year Moritz Zwerger&#10;&#10;This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.&#10; &#10; 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 General Public License for more details.&#10; &#10; You should have received a copy of the GNU General Public License along with this program. If not, see &lt;https://www.gnu.org/licenses/&gt;.&#10; &#10; This software is not affiliated with Mojang AB, the original developer of Minecraft." /> <option name="notice" value="Minosoft&#10;Copyright (C) &amp;#36;today.year Moritz Zwerger&#10;&#10;This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.&#10; &#10; 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 General Public License for more details.&#10; &#10; You should have received a copy of the GNU General Public License along with this program. If not, see &lt;https://www.gnu.org/licenses/&gt;.&#10; &#10; This software is not affiliated with Mojang AB, the original developer of Minecraft." />
<option name="myName" value="GPL" /> <option name="myName" value="GPL" />
</copyright> </copyright>
</component> </component>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?><!-- <?xml version="1.0" encoding="UTF-8"?><!--
~ Codename Minosoft ~ Minosoft
~ Copyright (C) 2020 Moritz Zwerger ~ Copyright (C) 2020 Moritz Zwerger
~ ~
~ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. ~ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
@ -41,9 +41,7 @@
org.apache.maven.plugins org.apache.maven.plugins
</groupId> </groupId>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<version> <version>2.3</version>
2.3
</version>
<configuration> <configuration>
<archive> <archive>
<manifest> <manifest>
@ -179,4 +177,4 @@
<version>4.1.52.Final</version> <version>4.1.52.Final</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
@ -99,6 +99,7 @@ public final class Minosoft {
dialog.setContentText(exception.getLocalizedMessage()); dialog.setContentText(exception.getLocalizedMessage());
Stage stage = (Stage) dialog.getDialogPane().getScene().getWindow(); Stage stage = (Stage) dialog.getDialogPane().getScene().getWindow();
stage.getIcons().add(GUITools.logo);
stage.setAlwaysOnTop(true); stage.setAlwaysOnTop(true);
stage.toFront(); stage.toFront();
dialog.setOnCloseRequest(dialogEvent -> System.exit(1)); dialog.setOnCloseRequest(dialogEvent -> System.exit(1));

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
@ -30,7 +30,7 @@ import java.util.ArrayList;
public class Configuration { public class Configuration {
final JsonObject config; final JsonObject config;
final Thread thread; private final Object lock = new Object();
public Configuration(String filename) throws IOException { public Configuration(String filename) throws IOException {
File file = new File(Config.homeDir + "config/" + filename); File file = new File(Config.homeDir + "config/" + filename);
@ -50,12 +50,14 @@ public class Configuration {
config = Util.readJsonFromFile(file.getAbsolutePath()); config = Util.readJsonFromFile(file.getAbsolutePath());
final File finalFile = file; final File finalFile = file;
thread = new Thread(() -> { new Thread(() -> {
while (true) { while (true) {
// wait for interrupt // wait for interrupt
try { synchronized (lock) {
Thread.sleep(Integer.MAX_VALUE); try {
} catch (InterruptedException ignored) { lock.wait();
} catch (InterruptedException ignored) {
}
} }
// write config to temp file, delete original config, rename temp file to original file to avoid conflicts if minosoft gets closed while saving the config // write config to temp file, delete original config, rename temp file to original file to avoid conflicts if minosoft gets closed while saving the config
File tempFile = new File(Config.homeDir + "config/" + filename + ".tmp"); File tempFile = new File(Config.homeDir + "config/" + filename + ".tmp");
@ -84,8 +86,7 @@ public class Configuration {
Log.verbose(String.format("Configuration saved to file %s", filename)); Log.verbose(String.format("Configuration saved to file %s", filename));
} }
} }
}, "IO"); }, "IO").start();
thread.start();
} }
public boolean getBoolean(ConfigurationPaths path) { public boolean getBoolean(ConfigurationPaths path) {
@ -155,7 +156,9 @@ public class Configuration {
} }
public void saveToFile() { public void saveToFile() {
thread.interrupt(); synchronized (lock) {
lock.notifyAll();
}
} }
public HashBiMap<String, MojangAccount> getMojangAccounts() { public HashBiMap<String, MojangAccount> getMojangAccounts() {
@ -183,4 +186,3 @@ public class Configuration {
return config; return config;
} }
} }

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
@ -23,4 +23,4 @@ public enum ConfigurationPaths {
ACCOUNT_SELECTED, ACCOUNT_SELECTED,
GENERAL_LANGUAGE, GENERAL_LANGUAGE,
DEBUG_VERIFY_ASSETS, DEBUG_VERIFY_ASSETS,
} }

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
@ -28,4 +28,4 @@ public enum SoundCategories {
public static SoundCategories byId(int id) { public static SoundCategories byId(int id) {
return values()[id]; return values()[id];
} }
} }

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
@ -253,4 +253,4 @@ public class AssetsManager {
private static String getAssetDiskPath(String hash) { private static String getAssetDiskPath(String hash) {
return Config.homeDir + String.format("assets/objects/%s/%s.gz", hash.substring(0, 2), hash); return Config.homeDir + String.format("assets/objects/%s/%s.gz", hash.substring(0, 2), hash);
} }
} }

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

View File

@ -1,5 +1,5 @@
/* /*
* Codename Minosoft * Minosoft
* Copyright (C) 2020 Moritz Zwerger * Copyright (C) 2020 Moritz Zwerger
* *
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Some files were not shown because too many files have changed in this diff Show More