local TestStubHotfixer = Class("TestStubHotfixer", HotfixBase) function TestStubHotfixer:OnInit() if (TEST or DEVINFO_ENABLE) and HOTFIX_ENABLE then self:Fix_ex(CS.Torappu.HotfixTestStub, "GenerateDevInfo", function(devVersion, dataVer) local info = CS.Torappu.HotfixTestStub.GenerateDevInfo(devVersion, dataVer) info = GlobalConfig.CUR_FUNC_VER .. "_HOTFIX_ENABLE\n" .. info return info end) end end return TestStubHotfixer