PGRData/Script/matrix/xentity/xdlchunt/xviewmodel/XViewModelDlcHuntBagChildOthers.lua

20 lines
533 B
Lua
Raw Normal View History

2024-09-01 20:49:41 +00:00
---@class XViewModelDlcHuntBagChildOthers
local XViewModelDlcHuntBagChildOthers = XClass(nil, "XViewModelDlcHuntBagChildOthers")
function XViewModelDlcHuntBagChildOthers:Ctor()
end
function XViewModelDlcHuntBagChildOthers:GetAllItem()
local items = XDataCenter.ItemManager.GetItemsByType(XItemConfigs.ItemType.DlcItem)
return items
end
function XViewModelDlcHuntBagChildOthers:IsAscend()
return true
end
function XViewModelDlcHuntBagChildOthers:GetFilterType()
return 1
end
return XViewModelDlcHuntBagChildOthers