Program.cs 276 B

123456789101112
  1. using PixiEditor.Extensions.Sdk;
  2. using PixiEditor.Extensions.Sdk.Utilities;
  3. namespace CGlueTestLib;
  4. public static class Program
  5. {
  6. public static void Main()
  7. {
  8. PixiEditorApi api = new PixiEditorApi(); // to prevent linker from removing the assembly
  9. }
  10. }