Ejemplo n.º 1
0
        private static void DrawSingleCardType(HeroCardType heroCardType, Rectangle rectangle, PdfCanvas canvas, Cursor bottomCursor)
        {
            var imagePath = Path.Combine(CurrentPath, "Legendary", "images", "Types", $"{heroCardType}.png");

            DrawCardType(rectangle, canvas, bottomCursor, imagePath);
        }
        private static void DrawSingleCardType(HeroCardType heroCardType, Rectangle rectangle, PdfContentByte canvas, Cursor bottomCursor)
        {
            var imagePath = GetCurrentPath + $"Legendary\\Images\\Types\\{heroCardType}.png";

            DrawCardType(rectangle, canvas, bottomCursor, imagePath);
        }