Add ability to craft multipl items at once

* Remove the old crafting table view
* Complete UI/UX of the inventory view
This commit is contained in:
Andrew Miner
2015-01-07 08:31:53 -08:00
parent a1a7ee5dc9
commit f51082a1cb
10 changed files with 72 additions and 37 deletions
+4 -4
View File
@@ -5,9 +5,9 @@ Copyright (c) 2014-2015 by Redwood Labs
All rights reserved.
###
BaseModel = require './base_model'
CraftingTable = require './crafting_table'
ModPack = require './mod_pack'
BaseModel = require './base_model'
CraftingPlan = require './crafting_plan'
ModPack = require './mod_pack'
########################################################################################################################
@@ -15,5 +15,5 @@ module.exports = class ItemPage extends BaseModel
constructor: (attributes={}, options={})->
attributes.modPack ?= new ModPack
attributes.table ?= new CraftingTable modPack:attributes.modPack
attributes.plan ?= new CraftingPlan attributes.modPack
super attributes, options