/traderous

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

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-05-05 01:05:32 UTC
  • Revision ID: josh@9ix.org-20130505010532-905cpj0k6o7kpm02
ship graphic.  point it in the direction of movement.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
require 'version'
8
8
require 'player'
9
 
require 'enemy'
10
 
 
11
 
util = {
12
 
   signOf = function(value)
13
 
               if value >= 0 then
14
 
                  return 1
15
 
               else
16
 
                  return -1
17
 
               end
18
 
            end
19
 
}
20
9
 
21
10
GameView = View:extend {
22
11
   onNew = function (self)
33
22
              the.player = SpacePlayer:new{x=400,y=300}
34
23
              self:add(the.player)
35
24
 
36
 
              self:add(Enemy:new{x=400, y=300})
37
 
 
38
25
              love.mouse.setGrab(true)
39
26
              --love.mouse.setVisible(false)
40
27