Starting working on Crafting and Achievements.
This commit is contained in:
15
src/divine_equipment/common/Divine_Crafting.java
Normal file
15
src/divine_equipment/common/Divine_Crafting.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package common;
|
||||
|
||||
import net.minecraft.stats.Achievement;
|
||||
import net.minecraftforge.common.AchievementPage;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 10/4/13
|
||||
*/
|
||||
public class Divine_Crafting {
|
||||
public static Achievement HollowBeThyName;
|
||||
public static Achievement ChildOfTheDamned;
|
||||
public static Achievement EndersGame;
|
||||
public static AchievementPage Divine_Equipment = new AchievementPage("Divine Equipment", HollowBeThyName, ChildOfTheDamned, EndersGame);
|
||||
}
|
||||
@@ -4,6 +4,7 @@ package divine_equipment; /**
|
||||
*/
|
||||
|
||||
import common.Divine_Content;
|
||||
import common.Divine_Crafting;
|
||||
import cpw.mods.fml.common.Mod;
|
||||
import cpw.mods.fml.common.Mod.Instance;
|
||||
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
|
||||
@@ -49,6 +50,8 @@ public class Divine_Equipment
|
||||
@Mod.EventHandler
|
||||
public void preInit(FMLPreInitializationEvent event){
|
||||
content = new Divine_Content();
|
||||
}
|
||||
crafting = new Divine_Crafting();
|
||||
}
|
||||
public static Divine_Content content;
|
||||
public static Divine_Crafting crafting;
|
||||
}
|
||||
Reference in New Issue
Block a user