Guest User

Untitled

a guest
Apr 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. /*we received an entity update packet*/
  2. void(float isnew) CSQC_Ent_Update =
  3. {
  4. local float fl;
  5. fl = ReadByte();
  6.  
  7. //dprint("CSQC: Received readbyte ", ftos(fl), "\n");
  8.  
  9. switch (fl) {
  10. case FL_ODE_CLOTH:
  11. Flag_Parse();
  12. break;
  13. }
  14.  
  15. //ehandler[fl >> 4i](isnew, fl);
  16. };
Add Comment
Please, Sign In to add comment