Autocomp bug fix

This commit is contained in:
Qwreey 2022-10-16 19:15:20 +09:00
parent 23ad73fe25
commit 5579ad134a

View file

@ -34,7 +34,7 @@ local _,round = pcall(require,"libs.round"); ---@module "src.libs.round"
local idSpace = {}; local idSpace = {};
---@return table this ---@return quadexport this
---@return quad_module_round round ---@return quad_module_round round
---@return quad_module_tween tween ---@return quad_module_tween tween
function module.init(id) function module.init(id)
@ -44,6 +44,8 @@ function module.init(id)
return this,this.round,this.class,this.mount,this.store,this.event,this.tween; return this,this.round,this.class,this.mount,this.store,this.event,this.tween;
end end
end end
---@class quadexport
local this = {items = {}}; local this = {items = {}};
this.require = require; this.require = require;