9 lines
189 B
Lua
9 lines
189 B
Lua
hook.Add( "PostGamemodeLoaded", "ItemStoreInitialize", function()
|
|
itemstore = {}
|
|
|
|
if SERVER then
|
|
include( "itemstore/sv_init.lua" )
|
|
else
|
|
include( "itemstore/cl_init.lua" )
|
|
end
|
|
end ) |