Files
macro-pad/host-app/MacroPad.Host/ActionFactory.cs
T

13 lines
353 B
C#

public static class ActionFactory
{
public static IAction? Create(BindingConfig config)
{
return config.Type switch
{
"launch" => new LaunchAction(config.Target),
"url" => new UrlAction(config.Target),
"keystroke" => new KeystrokeAction(config.Target),
_ => null
};
}
}