25 lines
348 B
PHP
25 lines
348 B
PHP
|
<?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();
|