Restructure into cross-platform monorepo: spi module, adapters tree, buildAll

This commit is contained in:
Brian Neumann-Fopiano
2026-06-11 13:08:55 -04:00
parent a1ff3b2c55
commit 7e224325f3
31 changed files with 585 additions and 6 deletions
@@ -0,0 +1,25 @@
/*
* Iris is a World Generator for Minecraft Servers
* Copyright (c) 2026 Arcane Arts (Volmit Software)
*
* 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 distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package art.arcane.iris.neoforge;
public final class IrisNeoForgeBootstrap {
public IrisNeoForgeBootstrap() {
throw new UnsupportedOperationException("The Iris NeoForge adapter is a build skeleton; worldgen is not wired yet (see CROSSPLATFORM_PLAN.md Phase 4).");
}
}
@@ -0,0 +1,10 @@
modLoader = "javafml"
loaderVersion = "[1,)"
license = "GPL-3.0"
[[mods]]
modId = "irisworldgen"
version = "${version}"
displayName = "Iris"
description = "Iris World Generation Engine (NeoForge adapter - SKELETON, worldgen not yet wired)"
authors = "Arcane Arts (Volmit Software)"