Initial commit

This commit is contained in:
2016-12-22 03:15:02 +01:00
commit 58f27830f4
20 changed files with 654 additions and 0 deletions

24
plugins/natron/plugin.php Normal file
View File

@ -0,0 +1,24 @@
<?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();