php-vfxapply/plugins/melt/plugin.php

25 lines
348 B
PHP
Raw Normal View History

2017-01-13 01:18:46 +00:00
<?php
namespace VfxApply\Plugin\Melt;
use VfxApply\Plugin;
use VfxApply\Input;
use VfxApply\Output;
use VfxApply\Preset;
class MeltPlugin extends Plugin
{
public function getName()
{
return "melt";
}
public function applyPreset(Preset $preset, Input $input, Output $output)
{
}
}
return new MeltPlugin();