Baseless/helpers/CreateSmoke.lua

12 lines
176 B
Lua
Raw Normal View History

2020-04-22 04:35:40 +00:00
function CreateSmoke (type, prototype)
return CreateEntity(
type,
MergeTables(
prototype,
{
animation = Baseless.Animation,
}
)
)
end