Initial commit
This commit is contained in:
24
plugins/natron/plugin.php
Normal file
24
plugins/natron/plugin.php
Normal 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();
|
Reference in New Issue
Block a user