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