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
1 changed files with 1 additions and 1 deletions

View File

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