mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-01-04 08:13:01 +05:00
16 lines
No EOL
440 B
Lua
16 lines
No EOL
440 B
Lua
util.AddNetworkString("VManip_SimplePlay")
|
|
util.AddNetworkString("VManip_StopHold")
|
|
|
|
--VManip_SimplePlay: WriteString of anim to play on client (not guaranteed to play)
|
|
--VManip_StopHold: WriteString of anim to stop holding on client
|
|
|
|
local function VManip_FindAndImport()
|
|
local path = "vmanip/anims/"
|
|
local anims = file.Find(path .. "*.lua", "lsv")
|
|
|
|
for k, v in pairs(anims) do
|
|
AddCSLuaFile(path .. v)
|
|
end
|
|
end
|
|
|
|
VManip_FindAndImport() |