static void Postfix(ref List <CardData> __result, ref CardPool cardPool)
        {
            List <CardData> list = new List <CardData>();

            for (int i = 0; i < cardPool.GetNumCards(); i++)
            {
                CardData cardAtIndex = cardPool.GetCardAtIndex(i);
                list.Add(cardAtIndex);
            }
            __result = list;
        }