예제 #1
0
파일: Table.cs 프로젝트: uotools/JustUO
 public void LookupAll()
 {
     VitaNexCore.TryCatch(
         () => InputFile.Deserialize(
             reader =>
     {
         foreach (ClilocData d in _Table.Values)
         {
             d.Lookup(reader as BinaryFileReader);
         }
     }),
         Clilocs.CSOptions.ToConsole);
 }