-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migrate Kyoyu.java -> KyoyuMod.java & forge 1.16.5 litematica/malilib
- Loading branch information
1 parent
9816501
commit 20d511b
Showing
7 changed files
with
46 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package com.vulpeus.kyoyu; | ||
|
||
//? if FORGE | ||
/* import net.minecraftforge.fml.common.Mod; */ | ||
|
||
//? if NEOFORGE | ||
/* import net.neoforged.fml.common.Mod; */ | ||
|
||
|
||
//? if FORGE || NEOFORGE | ||
/* @Mod("kyoyu") */ | ||
public class KyoyuMod | ||
//? if FABRIC | ||
implements net.fabricmc.api.ModInitializer | ||
|
||
//? if PAPER | ||
/* extends org.bukkit.plugin.java.JavaPlugin */ | ||
{ | ||
//? if FABRIC | ||
@Override public void onInitialize() | ||
|
||
//? if FORGE || NEOFORGE | ||
/* public KyoyuMod() */ | ||
//? if PAPER | ||
/* @Override public void onEnable() */ | ||
{ | ||
Kyoyu.LOGGER.info("Hello, World!"); | ||
Kyoyu.LOGGER.info("KyoyuMod Version : {}", Kyoyu.MOD_VERSION); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters