Remove comment.

This commit is contained in:
Anna Rose 2023-09-27 03:25:13 -04:00
parent b2cd05043e
commit 9bd54fbe2f

View File

@ -4,8 +4,6 @@ class("Ball").extends(Pixie)
function Ball:init(width, height, color, x, y)
Ball.super.init(self, width, height, color, x, y)
-- trying to use a table / array for the direction vector doesn't work for bizarre reasons...
-- it fails on the init() call at runtime.
self.dirX = -1
self.dirY = 1
self.speed = 3