include stream deck plugin

This commit is contained in:
michalcourson
2026-02-21 09:02:16 -05:00
parent 60355d176c
commit 9af8626dab
43 changed files with 3031 additions and 0 deletions

View File

@ -0,0 +1,19 @@
using BarRaider.SdTools;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ClipTrimDotNet
{
internal class Program
{
static void Main(string[] args)
{
// Uncomment this line of code to allow for debugging
//while (!System.Diagnostics.Debugger.IsAttached) { System.Threading.Thread.Sleep(100); }
SDWrapper.Run(args);
}
}
}