fix(actor2D): remove an erroneous call to Actor3D

This commit is contained in:
Kazhnuz 2019-07-12 23:18:01 +02:00
parent 696360ac30
commit 242e916d4b

View file

@ -193,7 +193,7 @@ end
-- DRAW FUNCTIONS -- DRAW FUNCTIONS
-- Draw the actors. -- Draw the actors.
function Actor3D:getShape() function Actor2D:getShape()
return (self.x), (self.y), self.w, (self.h) return (self.x), (self.y), self.w, (self.h)
end end