Skip to content

Instantly share code, notes, and snippets.

Created July 23, 2016 23:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/79903e21222e1fa4cf4ec34d63d7b6bf to your computer and use it in GitHub Desktop.
Save anonymous/79903e21222e1fa4cf4ec34d63d7b6bf to your computer and use it in GitHub Desktop.
package com.bigsis.spookjams; //My comments in this class are present in light-colored lines like this one that follow two forward-slashes ("//"). To remove these, go to "Edit > Find/Replace...", add "//.*" to the Find field, and press "Replace All".
public class Reference //This is a collection of constants used throughout the mod to help keep the code cleaner by keeping most variable information stored here in a single location.
{
public static final String MOD_ID = "bssjm"; //Internal name of your mod, it MUST be unique to prevent clashing with other mods.
public static final String NAME = "Big Sister's SpookJam Crash Course Mod"; //The name of your mod as displayed on the Minecraft Mod Detail screen.
public static final String VERSION = "0.1-wheat"; //Your version identifier; you can use numbers, decimals, alpha/beta tags, or you can be like me and get creative (I'm naming my alpha versions after grains and pulses!).
public static final String MINECRAFT_VERSION = "[1.9.4]"; //The version of Minecraft that this mod is compatible with; you can use a static value, or use special syntax to have it be compatible with other Minecraft version variants.
public static final String CLIENT_PROXY_CLASS = "com.bigsis.spookjams.proxy.ClientProxy"; //Pointer to the Minecraft client proxy; references the ClientProxy.java class inside the com.bigsis.spookjams.proxy package.
public static final String SERVER_PROXY_CLASS = "com.bigsis.spookjams.proxy.ServerProxy"; //Pointer to the Minecraft server proxy; references the ServerProxy.java class inside the com.bigsis.spookjams.proxy package.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment