Welcome to MrCrayfish's Furniture Mod
Here you will be able to add you items from your mod to support the oven and freezer from my mod!

Step 1:
Add the source files to your mod

Step 2:
To add items to oven, in your load method, add this line to your code
OvenRecipesAPI.instance().addFoodToOvenRecipes(yourModsItemID, new ItemStack(resultItem));
- yourModsItemID is the ID of your item. eg: mod_random.coolstick.itemID
- resultItem is the item returned once cooked. eg: mod_random.godSword //Don't put .itemID on the end.

To add items to freezer, in your load method, add this line to your code
FreezerRecipesAPI.instance().addSolidifying(yourModsItemID, new ItemStack(resultItem));
- yourModsItemID is the ID of your item. eg: mod_random.coolstick.itemID
- resultItem is the item returned once cooked. eg: mod_random.godSword //Don't put .itemID on the end.

Step 3: 
Once you done step 2 you should be all good. All you have to do now is make sure you distrubute the API with your mod.
Don't edit anything in the API as it may break my mod as well as yours.

- MrCrayfish