Exemplo n.º 1
0
        public static BundleFile Read(SmartStream stream, string bundlePath)
        {
            BundleFile bundle = new BundleFile(bundlePath);

            bundle.Read(stream);
            return(bundle);
        }
Exemplo n.º 2
0
        public static BundleFile Load(string bundlePath)
        {
            BundleFile bundle = new BundleFile(bundlePath);

            bundle.Load();
            return(bundle);
        }