Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     try {
         CoalCore cc = new CoalCore();
         cc.Start();
     } catch (Exception e) {
         Error.Execute(Console.BufferHeight, Console.BufferWidth, e.Message);
     }
 }
Ejemplo n.º 2
0
 public Events(CoalCore core)
 {
     TabKeyPressed += core.TabHandler;
     F10KeyPressed += core.F10KeyPressedHandler;
 }