/ld26

To get this branch, use:
bzr branch http://9ix.org/bzr/ld26

« back to all changes in this revision

Viewing changes to inventory.lua

  • Committer: Josh C
  • Date: 2013-04-27 17:06:27 UTC
  • Revision ID: josh@9ix.org-20130427170627-tz6h157jbi708yke
art

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Inventory = Class:extend {
2
 
   items = {},
3
 
   visible = true,
4
 
   add = function(self, item)
5
 
            item.invTile.y = 10
6
 
            item.invTile.x = 50 * #self.items
7
 
            self.items[item.name] = item
8
 
         end,
9
 
   draw = function(self)
10
 
             for _, item in pairs(self.items) do
11
 
                item.invTile:draw()
12
 
             end
13
 
          end
14
 
}
15
 
 
16
 
the.inventory = Inventory:new()