mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
feat(class): add temporary super method during class init
This commit is contained in:
@@ -34,7 +34,19 @@ function mixins.new(class, obj)
|
||||
|
||||
setmetatable(obj, class)
|
||||
|
||||
if class.init then obj:init() end
|
||||
if class.init then
|
||||
local parent = class
|
||||
|
||||
function obj:super(...)
|
||||
parent = getmetatable(parent)
|
||||
local superInit = parent and parent.init
|
||||
|
||||
if superInit then return superInit(self, ...) end
|
||||
end
|
||||
|
||||
obj:init()
|
||||
obj.super = nil
|
||||
end
|
||||
|
||||
return obj
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user