Пример #1
0
    void Update()
    {
        //Take care of currently falling items after the explosion

        foreach (ExplosionItem ThisItem in ExplosionItems)
        {
            if (ThisItem.Update())
            {
                Return(ThisItem.Powerup);
            }
        }
    }