MainBBWIWARG.cs 552 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using bbiwarg.Graphics;
  7. using bbiwarg.InputProviders;
  8. namespace bbiwarg
  9. {
  10. class MainBBIWARG
  11. {
  12. static void Main(string[] args)
  13. {
  14. IInputProvider inputProvider = new IisuInputProvider("..\\..\\videos\\touch\\4.skv");
  15. VideoHandle videoHandle = new VideoHandle(inputProvider);
  16. OutputWindow output = new OutputWindow(videoHandle);
  17. output.Run(30);
  18. }
  19. }
  20. }