vision/ship/ship.lua

10 lines
164 B
Lua
Raw Normal View History

2022-10-13 18:18:27 +02:00
Ship = Object.extend(Object)
function Ship:new()
self.name = "";
self.image = nil
2022-10-15 23:10:57 +02:00
self.weaponrot = 0
self.cooldown = 0
self.cooldownPeriod = 100
2022-10-13 18:18:27 +02:00
end