diff options
Diffstat (limited to 'gamemode/ents/art_chest/sh_art_chest.lua')
| -rw-r--r-- | gamemode/ents/art_chest/sh_art_chest.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gamemode/ents/art_chest/sh_art_chest.lua b/gamemode/ents/art_chest/sh_art_chest.lua new file mode 100644 index 0000000..1cfd103 --- /dev/null +++ b/gamemode/ents/art_chest/sh_art_chest.lua @@ -0,0 +1,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 |
