Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. bool isDeathAnim(uint16_t idAnim)
  2. {
  3.     switch (idAnim)
  4.     {
  5.     case 745:
  6.     case 1000:
  7.     case 1001:
  8.     case 1018:
  9.     case 1019:
  10.     case 1208:
  11.     case 1115:
  12.     case 1206:
  13.     case 1205:
  14.     case 1207:
  15.     case 1211:
  16.     case 1209:
  17.     case 746:
  18.         return true;
  19.  
  20.     default:
  21.         return false;
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement