beginning of the neocomputer
Some checks failed
build / build (21, ubuntu-22.04) (push) Failing after 12s
build / build (21, windows-2022) (push) Has been cancelled

This commit is contained in:
2026-04-07 19:52:58 -03:00
parent cf960ba22c
commit 2328169f2a
33 changed files with 227 additions and 214 deletions

View File

@@ -0,0 +1,19 @@
package org.neoflock.neocomputers;
import org.neoflock.neocomputers.platforms.fabric.NeoComputersFabric;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/*public class NeoComputersInit
{
public static final String MODID = "neocomputers";
public static final Logger LOGGER = LoggerFactory.getLogger("NeoComputers");
public static ModPlatform PLATFORM = null;
public static void entrypoint(ModPlatform platform) {
NeoComputersInit.PLATFORM = platform;
LOGGER.info("Started mod in %s loader".formatted(NeoComputersInit.PLATFORM.getModloader()));
LOGGER.info("Kotlin: %s".formatted(NeoComputers.INSTANCE.hello()));
}
}*/