public static void Ripp(Defines.ParserType type, uint entry, uint typeId, uint subTypeId, List <string> content)
        {
            if (!isInitialized)
            {
                Initialize();
                isInitialized = true;
            }

            if (Rippers.ContainsKey((int)type))
            {
                Rippers[(int)type](entry, typeId, subTypeId, content);
            }
        }
Exemple #2
0
 public RipperAttribute(Defines.ParserType type)
 {
     Type = type;
 }