summaryrefslogtreecommitdiff
path: root/script/vm/node/class.lua
blob: ee8b1ca8bec90176bd95d6f614532d3cd2f8419d (plain)
1
2
3
4
5
6
7
8
9
10
11
---@class vm.node.class
local mt = {}
mt.__index = mt
mt.type = 'class'

---@return vm.node.class
return function ()
    local class = setmetatable({
    }, mt)
    return class
end