blob: 1cfd103b97bc99f0218c2e9bd183071488687170 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
local ENT = {}
ENT.Type = "anim"
ENT.Base = "base_anim"
hook.Add("artery_core_loaded","load_ent_art_chest",function()
local e = scripted_ents.Get("base_anim")
setmetatable(ENT,e)
end)
return ENT
|