예제 #1
0
파일: a1_unk.cs 프로젝트: ProjectsPZ/PB0.1
 public static void writeInfo(SendPacket s, a1_unk.Struct info)
 {
     s.writeC(info._unkV);
     s.writeC(info._unkV2);
     s.writeC(info._unkV3);
     s.writeC(info._unkV4);
 }
예제 #2
0
파일: a1_unk.cs 프로젝트: ProjectsPZ/PB0.1
 public static a1_unk.Struct ReadInfo(ReceivePacket p, bool genLog)
 {
     a1_unk.Struct @struct = new a1_unk.Struct()
     {
         _unkV  = p.readC(),
         _unkV2 = p.readC(),
         _unkV3 = p.readC(),
         _unkV4 = p.readC()
     };
     if (!genLog)
     {
         ;
     }
     return(@struct);
 }
예제 #3
0
파일: a1_unk.cs 프로젝트: ProjectsPZ/PB0.1
 public static void writeInfo(SendPacket s, ReceivePacket p, bool genLog)
 {
     a1_unk.Struct info = a1_unk.ReadInfo(p, genLog);
     a1_unk.writeInfo(s, info);
 }