most of beginning of thing done woop

This commit is contained in:
Paul Liverman
2015-04-12 19:32:04 -07:00
parent bac0fb6c9f
commit 09614cd678
14 changed files with 194 additions and 1 deletions

11
src/ships/Node.lua Normal file
View File

@@ -0,0 +1,11 @@
return function(x, y, rotation)
local self = {}
self.x = x or 0
self.y = y or 0
self.rotation = rotation or 0
self.docked = false
return self
end