php-vfxapply/plugins/natron/plugin.php

24 lines
355 B
PHP

<?php
namespace VfxApply\Plugin\Natron;
use VfxApply\Plugin;
use VfxApply\Input;
use VfxApply\Output;
use VfxApply\Preset;
class NatronPlugin extends Plugin
{
public function getName()
{
return "natron";
}
public function applyPreset(Preset $preset, Input $input, Output $output)
{
}
}
return new NatronPlugin();