示例#1
0
 public void SendSlot(byte[] data, int box, int slot)
 {
     if (LPLGPE.SupportedVersions.Contains(Version))
     {
         LPLGPE.SendSlot(this, data, box, slot);
         return;
     }
     if (LPBDSP.SupportedVersions.Contains(Version))
     {
         LPBDSP.SendSlot(this, data, box, slot);
         return;
     }
     LPBasic.SendSlot(this, data, box, slot);
 }