Baseless/helpers/CreateExplosion.lua

12 lines
191 B
Lua

function CreateExplosion (type, prototype)
return CreateEntity(
type,
MergeTables(
prototype,
{
animations = Baseless.AnimationVariations,
}
)
)
end