8 lines
144 B
Lua
8 lines
144 B
Lua
|
Decorator = Object.extend(Ship)
|
||
|
|
||
|
function Decorator:new()
|
||
|
Decorator.super.new(self)
|
||
|
self.name = "The Decorator";
|
||
|
self.image = nil
|
||
|
end
|