/// <summary> Attempts to find the content instance with the specified name and mod name. Caching the result is recommended.<para/>This will throw exceptions on failure. </summary> /// <exception cref="KeyNotFoundException"/> public static T Find <T>(string modName, string name) where T : IModType => ModTypeLookup <T> .Get(modName, name);
/// <summary> Attempts to find the content instance with the specified full name. Caching the result is recommended.<para/>This will throw exceptions on failure. </summary> /// <exception cref="KeyNotFoundException"/> public static T Find <T>(string fullname) where T : IModType => ModTypeLookup <T> .Get(fullname);