Main.cs 190 B

1234567891011
  1. namespace RaahnSimulation
  2. {
  3. public static class Program
  4. {
  5. private static int Main(string[] argv)
  6. {
  7. Simulator sim = new Simulator();
  8. return sim.Execute(argv);
  9. }
  10. }
  11. }