Add source files to again satisfy modrinth
This commit is contained in:
parent
b22c968912
commit
5012d004ce
7 changed files with 336 additions and 0 deletions
17
src/main/java/dev/zontreck/libzontreck/LibZontreck.java
Normal file
17
src/main/java/dev/zontreck/libzontreck/LibZontreck.java
Normal file
|
@ -0,0 +1,17 @@
|
|||
package dev.zontreck.libzontreck;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
|
||||
import com.mojang.logging.LogUtils;
|
||||
|
||||
import net.minecraftforge.fml.common.Mod;
|
||||
|
||||
@Mod(LibZontreck.MOD_ID)
|
||||
public class LibZontreck {
|
||||
public static final Logger LOGGER = LogUtils.getLogger();
|
||||
public static final String MOD_ID = "libzontreck";
|
||||
|
||||
public LibZontreck(){
|
||||
|
||||
}
|
||||
}
|
Reference in a new issue