AI 实现初版随机地图

This commit is contained in:
2025-09-07 03:34:14 +08:00
parent 4e7f89bd38
commit 89d751ac34
22 changed files with 1555 additions and 1 deletions

View File

@ -0,0 +1,11 @@
local function InitPreCookViewModel(vm, wco)
vm.selected_precook_tools = {}
vm.selected_precook_containers = {}
end
return function(wco)
local vm = {}
InitPreCookViewModel(vm, wco)
return vm
end

View File

@ -0,0 +1,7 @@
local PreCookModelView = {}
return function(wco)
end