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