Ejemplo n.º 1
0
        internal void AttackSucceeded(SimulationEvent ev)
        {
            foreach (SimObject ob in AllObjects.Values)
            {
                ob.ControlAgent.AttackSucceeded(ev);
            }

            if (PlayerAgent != null)
            {
                PlayerAgent.AttackSucceeded(ev);
            }
        }