Program.cs 492 B

12345678910111213141516
  1. using ResourcesSample;
  2. namespace CreatePopupSample;
  3. public static class Program
  4. {
  5. /// <summary>
  6. /// The entry point of the application. This will be executed when extension is loaded.
  7. /// You can use this method, but there are special methods that are used for initialization. You won't be able to access PixiEditor Api at this point.
  8. /// See <see cref="ResourcesSampleExtension"/> for more information.
  9. /// </summary>
  10. public static void Main()
  11. {
  12. }
  13. }