From c7437f3a3bd9e3320fb8ffd9a3b610cf6a5bc94e Mon Sep 17 00:00:00 2001 From: Christian Weeks Date: Fri, 30 Mar 2012 16:22:10 -0400 Subject: [PATCH] Build system --- fml/.classpath | 3 +- fml/build.xml | 150 ++++++++++++++++++ fml/{src => common}/fml/CommonRegistry.java | 0 fml/{src => common}/fml/FMLHooks.java | 0 fml/{src => common}/fml/FMLModContainer.java | 0 fml/{src => common}/fml/Loader.java | 0 fml/{src => common}/fml/LoaderException.java | 0 fml/{src => common}/fml/Mod.java | 0 fml/{src => common}/fml/ModClassLoader.java | 0 fml/{src => common}/fml/ModContainer.java | 0 .../fml/ml/ModLoaderModContainer.java | 0 fml/{src => common}/fml/obf/FMLHandler.java | 0 .../net/minecraft/src/BaseMod.java | 0 .../net/minecraft/src/ModLoader.java | 0 14 files changed, 152 insertions(+), 1 deletion(-) create mode 100644 fml/build.xml rename fml/{src => common}/fml/CommonRegistry.java (100%) rename fml/{src => common}/fml/FMLHooks.java (100%) rename fml/{src => common}/fml/FMLModContainer.java (100%) rename fml/{src => common}/fml/Loader.java (100%) rename fml/{src => common}/fml/LoaderException.java (100%) rename fml/{src => common}/fml/Mod.java (100%) rename fml/{src => common}/fml/ModClassLoader.java (100%) rename fml/{src => common}/fml/ModContainer.java (100%) rename fml/{src => common}/fml/ml/ModLoaderModContainer.java (100%) rename fml/{src => common}/fml/obf/FMLHandler.java (100%) rename fml/{src => common}/net/minecraft/src/BaseMod.java (100%) rename fml/{src => common}/net/minecraft/src/ModLoader.java (100%) diff --git a/fml/.classpath b/fml/.classpath index b958ba93c..d48aef650 100644 --- a/fml/.classpath +++ b/fml/.classpath @@ -1,8 +1,9 @@ - + + diff --git a/fml/build.xml b/fml/build.xml new file mode 100644 index 000000000..b665331c3 --- /dev/null +++ b/fml/build.xml @@ -0,0 +1,150 @@ + + + + The Forge Mod Loader + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/fml/src/fml/CommonRegistry.java b/fml/common/fml/CommonRegistry.java similarity index 100% rename from fml/src/fml/CommonRegistry.java rename to fml/common/fml/CommonRegistry.java diff --git a/fml/src/fml/FMLHooks.java b/fml/common/fml/FMLHooks.java similarity index 100% rename from fml/src/fml/FMLHooks.java rename to fml/common/fml/FMLHooks.java diff --git a/fml/src/fml/FMLModContainer.java b/fml/common/fml/FMLModContainer.java similarity index 100% rename from fml/src/fml/FMLModContainer.java rename to fml/common/fml/FMLModContainer.java diff --git a/fml/src/fml/Loader.java b/fml/common/fml/Loader.java similarity index 100% rename from fml/src/fml/Loader.java rename to fml/common/fml/Loader.java diff --git a/fml/src/fml/LoaderException.java b/fml/common/fml/LoaderException.java similarity index 100% rename from fml/src/fml/LoaderException.java rename to fml/common/fml/LoaderException.java diff --git a/fml/src/fml/Mod.java b/fml/common/fml/Mod.java similarity index 100% rename from fml/src/fml/Mod.java rename to fml/common/fml/Mod.java diff --git a/fml/src/fml/ModClassLoader.java b/fml/common/fml/ModClassLoader.java similarity index 100% rename from fml/src/fml/ModClassLoader.java rename to fml/common/fml/ModClassLoader.java diff --git a/fml/src/fml/ModContainer.java b/fml/common/fml/ModContainer.java similarity index 100% rename from fml/src/fml/ModContainer.java rename to fml/common/fml/ModContainer.java diff --git a/fml/src/fml/ml/ModLoaderModContainer.java b/fml/common/fml/ml/ModLoaderModContainer.java similarity index 100% rename from fml/src/fml/ml/ModLoaderModContainer.java rename to fml/common/fml/ml/ModLoaderModContainer.java diff --git a/fml/src/fml/obf/FMLHandler.java b/fml/common/fml/obf/FMLHandler.java similarity index 100% rename from fml/src/fml/obf/FMLHandler.java rename to fml/common/fml/obf/FMLHandler.java diff --git a/fml/src/net/minecraft/src/BaseMod.java b/fml/common/net/minecraft/src/BaseMod.java similarity index 100% rename from fml/src/net/minecraft/src/BaseMod.java rename to fml/common/net/minecraft/src/BaseMod.java diff --git a/fml/src/net/minecraft/src/ModLoader.java b/fml/common/net/minecraft/src/ModLoader.java similarity index 100% rename from fml/src/net/minecraft/src/ModLoader.java rename to fml/common/net/minecraft/src/ModLoader.java