/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 19:40:13 UTC
  • Revision ID: josh@9ix.org-20130428194013-80jaqhflmrmwgo27
gate

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
require 'transition'
11
11
require 'displacer'
12
12
require 'inventory'
 
13
require 'flower'
13
14
require 'levels'
14
 
require 'items'
15
 
require 'troll'
16
15
 
17
16
require 'svg_levels'
18
17
 
41
40
   draw = function (self, x, y)
42
41
             View.draw(self, x, y)
43
42
             --love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
44
 
             --love.graphics.print('version:' .. VERSION, 20, 570)
 
43
             love.graphics.print('version:' .. VERSION, 20, 570)
45
44
          end,
46
45
   onUpdate = function (self, dt)
47
46
              end
50
49
the.app = App:new {
51
50
   level = 'shore', --default level
52
51
   onRun = function (self)
53
 
              print('Version: ' .. VERSION)
54
52
              self.view = GameView:new{level = self.level}
55
53
              if DEBUG then
56
54
                 self.console:watch('VERSION', 'VERSION')