/ld27

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

« back to all changes in this revision

Viewing changes to util.lua

  • Committer: Josh C
  • Date: 2013-08-24 03:54:55 UTC
  • Revision ID: josh@9ix.org-20130824035455-upi2mnssckafqxgs
map loading, super basic movement

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
util = {
2
 
   dim = function(dir)
3
 
      if dir == 'x' then
4
 
         return 'width'
5
 
      elseif dir == 'y' then
6
 
         return 'height'
7
 
      else
8
 
         if STRICT then error('dir '..dir) end
9
 
      end
10
 
   end
11
 
}