18 lines
200 B
Lua
18 lines
200 B
Lua
--- @class Effect
|
|
local effect = {}
|
|
effect.__index = effect
|
|
|
|
function effect:update(dt)
|
|
|
|
end
|
|
|
|
function effect:draw()
|
|
|
|
end
|
|
|
|
function effect.new()
|
|
return setmetatable({}, effect)
|
|
end
|
|
|
|
return effect
|