8 lines
149 B
Lua
8 lines
149 B
Lua
|
ExcaliburIV = Object.extend(Ship)
|
||
|
|
||
|
function ExcaliburIV:new()
|
||
|
ExcaliburIV.super.new(self)
|
||
|
self.name = "Excalibur IV";
|
||
|
self.image = nil
|
||
|
end
|