Exemplo n.º 1
0
 protected PhysicalFilesystem(FilesystemSource fs)
 {
     this.source = fs;
     this.s      = this.source.load();
 }
Exemplo n.º 2
0
 public NitroFilesystem(FilesystemSource s)
     : base(s)
 {
     mainDir = new Directory(this, null, true, "FILESYSTEM [" + s.getDescription() + "]", -100);
     load();
 }