Posted 18 March 2014 - 05:27 PM
I was making the mod, just getting the basic Forge needs out of the way, and this problem occurred.
Any help would be great. I should also mention I was following a tutorial and that is word for word how it was.
Spoiler
package player.ClaudeOrFido.foodgenmod;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.SidedProxy;
@Mod(modid = MainClass.MODID, name = MainClass.NAME, version = MainClass.VERSION)
public class MainClass {
@SidedProxy(clientSide = "player.ClaudeOrFido.foodgenmod.ClientProxy", serverSide = "player.ClaudeOrFido.foodgenmod.CommonProxy") CommonProxy proxy;
public static CommonProxy proxy;
public static final String MODID = "foodgenmod";
public static final String NAME = "FoodGen";
public static final String VERSION = "1.0";
public MainClass() {
}
}