private static bool Prefix(ref string __result, TechType techType)
        {
            var techData = BuilderUtils.GetCustomTechData(techType);

            if (techData != null)
            {
                __result = techData.displayString;
                return(false);
            }
            return(true);
        }
        private static bool Prefix(ref Atlas.Sprite __result, TechType techType)
        {
            CustomTechInfo techInfo = BuilderUtils.GetCustomTechData(techType);

            if (techInfo != null)
            {
                __result = techInfo.sprite;
                return(false);
            }

            return(true);
        }