diff --git a/build.properties b/build.properties new file mode 100644 index 000000000..51e863cf7 --- /dev/null +++ b/build.properties @@ -0,0 +1,7 @@ +dir.development=./ +dir.mcp=${dir.development}forge/mcp +version.minecraft=1.6.2 +version.mod.major=0 +version.mod.minor=0 +version.mod.revis=1 +version.universalelectricity=2.0.0 \ No newline at end of file diff --git a/build.xml b/build.xml new file mode 100644 index 000000000..778215006 --- /dev/null +++ b/build.xml @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/resonantinduction/ResonantInduction.java b/src/resonantinduction/ResonantInduction.java index 2f281a100..01c924005 100644 --- a/src/resonantinduction/ResonantInduction.java +++ b/src/resonantinduction/ResonantInduction.java @@ -1,6 +1,8 @@ package resonantinduction; import cpw.mods.fml.common.Mod; +import cpw.mods.fml.common.Mod.Instance; +import cpw.mods.fml.common.ModMetadata; /** * @author Calclavia @@ -18,4 +20,9 @@ public class ResonantInduction public static final String BUILD_VERSION = "@BUILD@"; public static final String VERSION = MAJOR_VERSION + "." + MINOR_VERSION + "." + REVISION_VERSION; + @Instance(ID) + public static ResonantInduction INSTNACE; + + @Mod.Metadata(ID) + public static ModMetadata metadata; }