Example #1
0
 public Render(string image, int size, Driver driv)
 {
     this.driver = driv;
     driver.mode = 0;
     virtualScreen vs = new virtualScreen(image);
     holo = new Hologram1(vs, size);
 }
Example #2
0
 static void Main(string[] args)
 {
     Driver driver = new Driver();
     if (verifExecute())
     {
         driver.run();
     }
     else
     {
         System.Windows.Forms.MessageBox.Show("La machine ne dispose pas des ressources suffisantes afin d'executer l'application");
     }
 }
Example #3
0
 public Render(int size, string image1, string image2, string image3, string image4, Driver driv)
 {
     this.driver = driv;
     driver.mode = 2;
 }
Example #4
0
 public Render(int size, string video, bool check, Driver driv)
 {
     this.driver = driv;
     driver.mode = 1;
     holo2 = new Hologram2(video, size, check);
 }