mirror of
https://github.com/Ukendio/jecs.git
synced 2026-02-04 15:15:21 +00:00
11 lines
171 B
Text
Executable file
11 lines
171 B
Text
Executable file
local function component()
|
|
local id = 1
|
|
local v
|
|
local function instance()
|
|
return id, v
|
|
end
|
|
return function(value)
|
|
v = value
|
|
return instance
|
|
end
|
|
end
|