2008-08-16 02:04:20 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Simian
|
|
|
|
|
{
|
|
|
|
|
class MainEntry
|
|
|
|
|
{
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
Simian simulator = new Simian();
|
2008-12-16 08:43:27 +00:00
|
|
|
if (simulator.Start())
|
2008-09-22 15:11:39 +00:00
|
|
|
{
|
|
|
|
|
Console.WriteLine("Simulator is running. Press ENTER to quit");
|
|
|
|
|
Console.ReadLine();
|
|
|
|
|
simulator.Stop();
|
|
|
|
|
}
|
2008-08-16 02:04:20 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|