/ld26

To get this branch, use:
bzr branch /bzr/ld26
19 by Josh C
inventory (and a flower)
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()