LegoRun.cs 296 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Waka.Lego.Icon
  7. {
  8. public class LegoRun
  9. {
  10. public Form1 Run()
  11. {
  12. Form1 form = new Form1();
  13. return form;
  14. }
  15. }
  16. }