예제 #1
0
파일: Volume.cs 프로젝트: jenden0/KOS
        public List <CodePart> LoadObjectFile(string filePath, string prefix, byte[] content)
        {
            SafeHouse.Logger.SuperVerbose("Volume: LoadObjectFile: " + filePath);
            List <CodePart> parts = CompiledObject.UnPack(filePath, prefix, content);

            return(parts);
        }
예제 #2
0
 public List <CodePart> AsParts(GlobalPath path, string prefix)
 {
     return(CompiledObject.UnPack(path, prefix, Bytes));
 }
예제 #3
0
 public List <CodePart> AsParts(string name, string prefix)
 {
     return(CompiledObject.UnPack(name, prefix, Bytes));
 }