vision/ship/decorator.lua

8 lines
144 B
Lua
Raw Normal View History

2022-10-13 18:18:27 +02:00
Decorator = Object.extend(Ship)
function Decorator:new()
Decorator.super.new(self)
self.name = "The Decorator";
self.image = nil
end