mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-09 17:54:59 +00:00
In order to support the way some Smart Objects work, a clear directory join was needed in order to allow for clearing a selection in certain circumstances. In order to support finer-grained dependencies while developing plugins, the Development Device Factory was added.
9 lines
220 B
C#
9 lines
220 B
C#
using PepperDash.Essentials.Core.Presets;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
|
{
|
|
public abstract class ConvertiblePreset
|
|
{
|
|
public abstract PresetBase ConvertCodecPreset();
|
|
}
|
|
} |