2019-05-05 15:35:49 +02:00
|
|
|
local Base = require "gamecore.modules.world.actors.actor2D"
|
|
|
|
local Coin = Base:extend()
|
|
|
|
|
|
|
|
function Coin:new(world, x, y)
|
|
|
|
Coin.super.new(self, world, "coin", x, y, 16, 16, false)
|
|
|
|
self:setSprite("coin")
|
|
|
|
end
|
|
|
|
|
2019-05-05 19:46:13 +02:00
|
|
|
function Coin:takeCoin(other)
|
|
|
|
self:destroy( )
|
|
|
|
end
|
|
|
|
|
2019-05-05 15:35:49 +02:00
|
|
|
return Coin
|