woo stuff fancy

This commit is contained in:
Paul Liverman
2015-05-07 01:49:00 -07:00
parent da9e427512
commit b4fa1a6d84
6 changed files with 246 additions and 0 deletions

View File

@@ -24,6 +24,7 @@ function Ship:initialize(x, y, rotation)
self.dockedTo = false
self.engineStatus = "idle"
self.Resources = Resources()
end
@@ -77,6 +78,7 @@ function Ship:moveTo(x, y)
end
function Ship:update(dt)
self.Resources:update(dt, self.engineStatus)
--check our speed, see how far along the "line" we can go, go there
-- if reached destination ... WELL SHIT DEST NEEDS TO BE ABLE TO KNOW IF IS SHIP OR WHATEVER
end