12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using bbiwarg.Graphics;
- using bbiwarg.InputProviders;
- namespace bbiwarg
- {
- class MainBBIWARG
- {
- static void Main(string[] args)
- {
- IInputProvider inputProvider = new IisuInputProvider("..\\..\\videos\\touch\\3.skv");
- VideoHandle videoHandle = new VideoHandle(inputProvider);
- OutputWindow output = new OutputWindow(videoHandle);
- output.Run(30);
- }
- }
- }
|