/ld26

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

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-04-28 01:21:46 UTC
  • Revision ID: josh@9ix.org-20130428012146-42c1hx6r1g7y1kgu
fadeĀ in

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
                      Transition:new{x = 10, y = 133, target = 'forest1',
32
32
                                     targetX = 735, targetY = 370}
33
33
                   } end
34
 
   },
35
 
   lake = {
36
 
      objects = function() return {
37
 
                      Tile:new{image = 'data/lake-bg.png'},
38
 
                      Player:new{x = 540, y = 266,
39
 
                                 image = 'data/lake-player.png'},
40
 
                   }
41
 
                end
42
 
   },
43
 
   village = {
44
 
      objects = function() return {
45
 
                      Tile:new{image = 'data/village-bg.png'},
46
 
                      Player:new{x = 121, y = 440,
47
 
                                 image = 'data/village-player.png'},
48
 
                   }
49
 
                end
50
34
   }
51
35
}
52
36
 
107
91
               end
108
92
            end
109
93
}
110
 
 
111
 
function l(level)
112
 
   the.app.view = GameView:new{level = level}
113
 
end
 
 
b'\\ No newline at end of file'