Skip to content

Instantly share code, notes, and snippets.

@Xandaros
Xandaros / gist:ea8756e4c4ba00218855
Last active July 3, 2023 21:41
Unnamed class library
--@name Class
--@author Xandaros
--Class library, most recent version can be found here: https://gist.github.com/Xandaros/ea8756e4c4ba00218855
local function callConstructor(class, obj, ...)
local meta = getmetatable(class)
if meta.__super then
if class.superArgs then
callConstructor(meta.__super, obj, class.superArgs(...))