summaryrefslogtreecommitdiff
path: root/server/src/vm/dots.lua
blob: db8e134ee1ca6bb183568f5ee5420ea61cd8be72 (plain)
1
2
3
4
5
6
7
8
local mt = {}
mt.__index = mt
mt.type = 'dots'

return function ()
    local self = setmetatable({}, mt)
    return self
end