Example #1
0
 public static void Add(PathType pathType, BaseResPath baseResPath)
 {
     _resMap.Add(pathType, baseResPath);
 }
Example #2
0
        public static T Get <T>(PathType pathType) where T : BaseResPath
        {
            BaseResPath path = Get(pathType);

            return(path as T);
        }