Exemplo n.º 1
0
        static void Main(string[] args)
        {
            var hq = new Hq();

            for (var i = 0; i < 10; i++)
            {
                hq.CheckAgents();
            }

            Console.WriteLine(hq.GetTotalIntel());
        }
Exemplo n.º 2
0
 public Agent(Hq hq, string name)
 {
     _name = name;
     _hq   = hq;
 }