예제 #1
0
 public static bool Slice()
 {
     if (Network.VerifyContext())
     {
         Network._networkContext.Cycle();
     }
     return(true);
 }
예제 #2
0
 public static void Flush()
 {
     if (!Network.VerifyContext())
     {
         return;
     }
     Network._networkContext.Flush();
 }
예제 #3
0
 public static bool Send(Packet p)
 {
     if (Network.VerifyContext())
     {
         Network._networkContext.Send(p);
     }
     return(true);
 }