19 lines
640 B
Java
19 lines
640 B
Java
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()));
|
|
|
|
}
|
|
}*/ |