mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-27 03:53:33 +00:00
9 lines
115 B
Lua
9 lines
115 B
Lua
Unit = {}
|
|
|
|
function Unit:new(un)
|
|
unit = un or {}
|
|
self.__index = index
|
|
setmetatable(unit, self)
|
|
return unit
|
|
end
|