-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move GardenDecor into main project area
- Loading branch information
Showing
21 changed files
with
83 additions
and
49 deletions.
There are no files selected for viewing
Binary file added
BIN
+310 Bytes
GardenCore/resources/assets/gardenstuff/textures/blocks/chain_heavy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+256 Bytes
GardenCore/resources/assets/gardenstuff/textures/blocks/chain_heavy_gold.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+507 Bytes
GardenCore/resources/assets/gardenstuff/textures/blocks/chain_ladder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+226 Bytes
GardenCore/resources/assets/gardenstuff/textures/blocks/chain_light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+227 Bytes
GardenCore/resources/assets/gardenstuff/textures/blocks/chain_light_gold.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+322 Bytes
GardenCore/resources/assets/gardenstuff/textures/blocks/iron_baseplate_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+440 Bytes
GardenCore/resources/assets/gardenstuff/textures/blocks/iron_baseplate_4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+392 Bytes
GardenCore/resources/assets/gardenstuff/textures/blocks/iron_lattice.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+321 Bytes
GardenCore/resources/assets/gardenstuff/textures/items/gold_chain_link.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+334 Bytes
GardenCore/resources/assets/gardenstuff/textures/items/iron_chain_link.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+236 Bytes
GardenCore/resources/assets/gardenstuff/textures/items/iron_nugget.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,22 @@ | ||
[ | ||
{ | ||
"modid": "GardenCore", | ||
"name": "Garden Core", | ||
"description": "Base mod for a collection of garden and plant mods.", | ||
"version": "1.0.0", | ||
"credits": "By jaquadro", | ||
"logoFile": "", | ||
"url": "http://www.jaquadro.com/", | ||
"authors": [ "jaquadro" ] | ||
} | ||
{ | ||
"modid": "GardenCore", | ||
"name": "Garden Core", | ||
"description": "Base mod for a collection of garden and plant mods.", | ||
"version": "1.0.0", | ||
"credits": "By jaquadro", | ||
"logoFile": "", | ||
"url": "http://www.jaquadro.com/", | ||
"authors": [ "jaquadro" ] | ||
}, | ||
{ | ||
"modid": "GardenStuff", | ||
"name": "Garden Stuff", | ||
"description": "Decorative blocks and miscellaneous things for gardens and more.", | ||
"version": "1.0.0", | ||
"credits": "By jaquadro", | ||
"logoFile": "", | ||
"url": "http://www.jaquadro.com/", | ||
"authors": [ "jaquadro" ] | ||
} | ||
] |
41 changes: 41 additions & 0 deletions
41
GardenCore/src/com/jaquadro/minecraft/gardenstuff/GardenStuff.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package com.jaquadro.minecraft.gardenstuff; | ||
|
||
import com.jaquadro.minecraft.gardenstuff.core.CommonProxy; | ||
import com.jaquadro.minecraft.gardenstuff.core.ModBlocks; | ||
import cpw.mods.fml.common.Mod; | ||
import cpw.mods.fml.common.SidedProxy; | ||
import cpw.mods.fml.common.event.FMLInitializationEvent; | ||
import cpw.mods.fml.common.event.FMLPostInitializationEvent; | ||
import cpw.mods.fml.common.event.FMLPreInitializationEvent; | ||
|
||
@Mod(modid = GardenStuff.MOD_ID, name = GardenStuff.MOD_NAME, version = GardenStuff.MOD_VERSION, dependencies = "required-after:GardenCore") | ||
public class GardenStuff | ||
{ | ||
public static final String MOD_ID = "GardenStuff"; | ||
public static final String MOD_NAME = "Garden Stuff"; | ||
public static final String MOD_VERSION = "@VERSION@"; | ||
static final String SOURCE_PATH = "com.jaquadro.minecraft.gardenstuff."; | ||
|
||
@Mod.Instance(MOD_ID) | ||
public static GardenStuff instance; | ||
|
||
@SidedProxy(clientSide = SOURCE_PATH + "core.ClientProxy", serverSide = SOURCE_PATH + "core.CommonProxy") | ||
public static CommonProxy proxy; | ||
|
||
public static final ModBlocks blocks = new ModBlocks(); | ||
|
||
@Mod.EventHandler | ||
public void preInit (FMLPreInitializationEvent event) { | ||
blocks.init(); | ||
} | ||
|
||
@Mod.EventHandler | ||
public void init (FMLInitializationEvent event) { | ||
proxy.registerRenderers(); | ||
} | ||
|
||
@Mod.EventHandler | ||
public void postInit (FMLPostInitializationEvent event) { | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...necraft/gardendecor/core/ClientProxy.java → ...necraft/gardenstuff/core/ClientProxy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...necraft/gardendecor/core/CommonProxy.java → ...necraft/gardenstuff/core/CommonProxy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
...r/client/renderer/LightChainRenderer.java → ...denstuff/renderer/LightChainRenderer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 0 additions & 12 deletions
12
GardenDecor/src/com/jaquadro/minecraft/gardendecor/GardenDecor.java
This file was deleted.
Oops, something went wrong.