forked from Simnation/Main
16 lines
296 B
Lua
16 lines
296 B
Lua
if Config.Inventory ~= "custom" then return end
|
|
CustomInventory = {}
|
|
|
|
function CustomInventory:GetWeapons()
|
|
local weapons = {}
|
|
local userInventory
|
|
|
|
return weapons
|
|
end
|
|
|
|
function CustomInventory:GetWeaponAttachment(item)
|
|
local components = {}
|
|
local userInventory
|
|
|
|
return components
|
|
end
|