Exemplo n.º 1
0
    }//TakeOrder

    public void ServeClient(BasicAI client, Recepe toServe)
    {
        float cash = client.RecieveOrder(toServe);

        _shopStorage.Cash += cash;
        if (orderedQueue.Contains(client))
        {
            orderedQueue.Remove(client);
        }
    }//ServeClient