Advertisement
Guest User

Untitled

a guest
Oct 18th, 2015
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Procedure.b Read_Network_Byte()
  2.  
  3.   ProcedureReturn PeekB(*Buffer)
  4.  
  5. EndProcedure
  6.  
  7.  
  8. Procedure Network_Loop()
  9.  
  10.   ForEach Network_Client() ; Client element is set in list, which is global for all functions at time being (single thread)
  11.    
  12.     Read_Network_Byte() ; Don't need pass client id, since single thread the network client ID is currently locked by element
  13.    
  14.   Next
  15.  
  16. EndProcedure
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement