-- *** Debug script ***
-- Since: v0.4.2
--[[
local Obj = require("modules.obj")

local nl = 0
WriteInLog(string.format("Obj.VALID_MODEL = {\n"))
for i=1, 295 do
	for k in pairs(Obj.OBJ_NAME) do
		if (i == k) then
			WriteInLog(string.format("%d,", k))
			if (nl >= 24) then
				nl = 0
				WriteInLog(string.format("\n"))
			end
			nl = nl + 1
		end
	end
end
WriteInLog(string.format("}\n"))
]]--